修改dockerfile

This commit is contained in:
sysnix 2024-03-05 05:41:20 +08:00
parent 00e3bae5bd
commit c99414b3ed
1 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@ FROM alpine:3.18.4
RUN mkdir /app RUN mkdir /app
WORKDIR /app WORKDIR /app
COPY Blog . COPY Blog .
COPY conf . COPY conf ./conf
COPY assets . COPY assets ./assets
COPY template . COPY template ./template
EXPOSE 8088 EXPOSE 8088
RUN chmod 777 Blog RUN chmod 777 Blog
CMD ./Blog -profile=prod CMD ./Blog -profile=prod