Update Dockerfile
Browse files- Dockerfile +1 -7
Dockerfile
CHANGED
|
@@ -11,13 +11,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 11 |
openssl \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
|
| 14 |
-
|
| 15 |
-
COPY app.py .
|
| 16 |
-
COPY generate_cert.py .
|
| 17 |
-
COPY install.sh .
|
| 18 |
-
COPY run.sh .
|
| 19 |
-
COPY templates/ ./templates/
|
| 20 |
-
COPY ./static/ ./static/
|
| 21 |
|
| 22 |
# 给脚本添加执行权限
|
| 23 |
RUN chmod +x install.sh run.sh
|
|
|
|
| 11 |
openssl \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
|
| 14 |
+
RUN git clone https://github.com/lueluelue12138/sharp-gui && cd sharp-gui
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
# 给脚本添加执行权限
|
| 17 |
RUN chmod +x install.sh run.sh
|