From 82c34edb04124180b86c501ce6089db7c887780b Mon Sep 17 00:00:00 2001 From: coward Date: Tue, 4 Jun 2024 11:20:55 +0800 Subject: [PATCH] =?UTF-8?q?:whale:=E6=9B=B4=E6=94=B9=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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