diff --git a/Dockerfile b/Dockerfile index 1b66993..5473bc9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:14 AS builder # Set working directory WORKDIR /app # Copy all files from current directory to working dir in image -COPY ./web . +COPY . . # install node modules and build assets RUN yarn install && yarn build