Merge pull request '创建Dockerfile' (#5) from sysnix into master

Reviewed-on: #5
This commit is contained in:
sysnix 2024-03-05 04:36:16 +08:00
commit 320e2228ed
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