This commit is contained in:
0xJacky 2021-10-09 13:29:58 +08:00
parent 2287b1792c
commit 278b143360
66 changed files with 144 additions and 197 deletions

View file

@ -1,16 +0,0 @@
FROM debian:latest
WORKDIR /app
COPY ./sources.list /etc/apt/sources.list
RUN echo "installing nginx"
RUN apt-get update -y && apt install nginx -y
COPY ./start.sh /app/start.sh
RUN chmod a+x start.sh
COPY ./server /app/server
COPY ./html /app/html
COPY ./nginx.conf /etc/nginx/sites-available/default
EXPOSE 9180
CMD ["./start.sh"]