crdt-server/Dockerfile
Untone bebfd46958
Some checks failed
CI/CD / test (push) Successful in 9s
CI/CD / deploy (push) Failing after 4s
port-4000-env
2024-02-17 15:20:43 +03:00

6 lines
68 B
Docker

FROM node:alpine
EXPOSE 4000
COPY . .
RUN npm install
CMD npm start