fix(web): 🐛🔨 fix Dockerfile

This commit is contained in:
Collin M. Barrett 2020-08-25 03:35:17 -05:00
parent 5298e8f6a5
commit c8f721d057

View file

@ -15,7 +15,8 @@ RUN npm ci --only=production
# init build
FROM node:alpine as build
COPY --from=install node_modules .
WORKDIR /usr/src/app/
COPY --from=install /usr/src/app/node_modules ./node_modules
# build
COPY . .