Rename dockerfile to Dockerfile

This commit is contained in:
E
2021-02-19 16:52:07 +00:00
committed by GitHub
parent db2b89de68
commit b2855f5a38

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:15.8.0
ENV IS_DOCKER=true
ENV NODE_ENV=production
WORKDIR /app
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install && npm install nodemon
COPY . .
CMD [ "npm", "start" ]