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

14 lines
285 B
Docker

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