commit 429ffdacf4c66d17f8d1222b9aa08ee0519415ce Author: sysnix Date: Thu Feb 29 20:30:15 2024 +0800 添加 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2213db2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM alpine:3.18.4 +RUN mkdir /app +WORKDIR /app +COPY demo . +EXPOSE 8888 +RUN chmod 777 demo +CMD ./demo +#END \ No newline at end of file