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-13 18:35:03 +03:00

13 lines
133 B
Docker

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