创建Dockerfile

This commit is contained in:
sysnix 2024-03-05 04:35:51 +08:00
parent 69c159c076
commit a37aa6db0a
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM alpine:3.18.4
RUN mkdir /app
WORKDIR /app
COPY Blog .
COPY conf .
EXPOSE 8088
RUN chmod 777 Blog
CMD ./Blog
#END