This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
skolavdf/si/docker-template/Dockerfile
2023-03-26 23:39:38 +02:00

10 lines
130 B
Docker

FROM node:12.18.1
ENV NODE_ENV=production
COPY "src" "/app"
WORKDIR /app
RUN npm install --production
CMD [ "node", "app.js" ]