fix docker

This commit is contained in:
Wingy 2020-11-02 23:36:43 -05:00
parent 85c29f1835
commit 988e528157

View file

@ -3,7 +3,7 @@ FROM node:15
ENV NODE_ENV production
WORKDIR /usr/src/app
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "./"]
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "patched-express-response.js", "./"]
RUN npm install --production --silent && mv node_modules ../
COPY . .