c4k-jitsi/infrastructure/excalidraw-backend/image/Dockerfile

13 lines
338 B
Docker
Raw Normal View History

2023-09-22 11:38:32 +00:00
# Taken from: https://github.com/jitsi/excalidraw-backend
FROM node:20.10.0-bookworm-slim
2023-09-22 11:38:32 +00:00
WORKDIR /excalidraw-backend
2023-12-21 20:41:47 +00:00
COPY resources/package.json resources/package-lock.json resources/tsconfig.json resources/install.sh resources/src resources/install_functions_debian.sh ./
2023-09-22 11:38:32 +00:00
2023-12-21 20:23:40 +00:00
RUN ./install.sh
2023-09-22 11:38:32 +00:00
EXPOSE 80
EXPOSE 9090
CMD ["npm", "start"]