diff --git a/Dockerfile b/Dockerfile index 9c91143..eaa184f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app ENV NODE_ENV=production ENV PORT=4028 COPY package*.json ./ -RUN npm ci +RUN npm install COPY . . RUN npm run build EXPOSE 4028