diff --git a/Dockerfile b/Dockerfile index 59e9209..4b1136f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN npm config set registry https://registry.npmmirror.com RUN pnpm install RUN pnpm build -RUN cd ../web && ls -lh +RUN cd ../web && ls -lh && pwd FROM golang:alpine as build @@ -21,7 +21,7 @@ WORKDIR /build COPY . . COPY --from=build-stage /front/web/ /web -RUN cd ./web && ls -al +RUN cd ./web && ls -lh RUN cd .. # sqlite必须 ENV GO111MODULE=on