From c99414b3ed388878c5e93719158665ea09bdfd0d Mon Sep 17 00:00:00 2001 From: sysnix Date: Tue, 5 Mar 2024 05:41:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b6f3b69..44ddbec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM alpine:3.18.4 RUN mkdir /app WORKDIR /app COPY Blog . -COPY conf . -COPY assets . -COPY template . +COPY conf ./conf +COPY assets ./assets +COPY template ./template EXPOSE 8088 RUN chmod 777 Blog CMD ./Blog -profile=prod