You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
c4k-jitsi/infrastructure/excalidraw-backend/image/Dockerfile

13 lines
338 B
Docker

# Taken from: https://github.com/jitsi/excalidraw-backend
FROM node:20.10.0-bookworm-slim
WORKDIR /excalidraw-backend
COPY resources/package.json resources/package-lock.json resources/tsconfig.json resources/install.sh resources/src resources/install_functions_debian.sh ./
RUN ./install.sh
EXPOSE 80
EXPOSE 9090
CMD ["npm", "start"]