创建Dockerfile #5

Merged
sysnix merged 1 commits from sysnix into master 2024-03-05 04:36:17 +08:00
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