修改expose

This commit is contained in:
sysnix 2024-02-29 21:29:10 +08:00
parent 1ae62d6f1e
commit 44c4afb719
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM alpine:3.18.4
RUN mkdir /app
WORKDIR /app
COPY demo .
EXPOSE 8888
EXPOSE 9999
RUN chmod 777 demo
CMD ./demo
#END