diff --git a/frontend/Dockerfile b/frontend/Dockerfile index dd60ae6..7dc905d 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -12,8 +12,7 @@ FROM node:18-alpine3.16 WORKDIR /app COPY package.json ./ COPY yarn.lock ./ -RUN yarn install --frozen-lockfile --registry http://172.17.0.2:4873 -COPY --from=build /usr/build /app +RUN yarn install --registry http://172.17.0.2:4873 --frozen-lockfile COPY --from=build /usr/build /app EXPOSE 8000 CMD ["node", "/app"]