crdt-server/Dockerfile
Stepan Vladovskiy c50d74d38d
Some checks failed
CI/CD / deploy (push) Failing after 15s
CI/CD / test (push) Successful in 9s
debug: try another start container mode
2024-04-09 13:02:50 -03:00

5 lines
81 B
Docker

FROM node:alpine
EXPOSE 4000
COPY . .
RUN npm install
CMD ["node", "./index.mjs"]