diff --git a/Dockerfile b/Dockerfile index 998ecb8..4ae7a10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:18-alpine as build-stage WORKDIR front -COPY ./web-src . +COPY . . WORKDIR web-src RUN ls -lh @@ -11,7 +11,7 @@ RUN npm config set registry https://registry.npmmirror.com RUN pnpm install RUN pnpm build && \ - ls -al + ls -lh FROM golang:alpine as build