txtdot/Dockerfile
Artemy Egorov 99934ac3c7 fix: docs and dockerfile
change version of node
2023-08-27 15:17:34 +03:00

17 lines
151 B
Docker

FROM node:18-alpine
WORKDIR /app
COPY package*.json .
RUN npm install
COPY . .
RUN npm run build
ENV PORT=8080
EXPOSE 8080
CMD ["npm", "start"]