This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
fortnite-metrics-grafana/Dockerfile

11 lines
292 B
Docker
Raw Normal View History

2023-04-09 06:49:29 +00:00
FROM node:lts-alpine
ENV NODE_ENV=production
WORKDIR /usr/src/app
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "./"]
RUN npm install --production --silent && mv node_modules ../
COPY . .
EXPOSE 3000
RUN chown -R node /usr/src/app
USER node
2023-04-09 07:42:34 +00:00
CMD ["node", "src/index.js"]