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 22:12:51 +03:00

15 lines
157 B
Docker

FROM node:14-alpine
ENV NODE_ENV production
WORKDIR /home/app
COPY package.json ./
RUN npm install
COPY build ./
EXPOSE 3001
CMD ["node", "server.js"]