This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
EvoCalculator/Dockerfile
2020-11-14 16:16:24 +03:00

13 lines
114 B
Docker

FROM node:14-alpine
WORKDIR /home/app
COPY . .
RUN yarn
RUN yarn build
EXPOSE 3001
CMD ["node", "server.js"]