Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -5,5 +5,5 @@ RUN apk update && apk add --no-cache sing-box python3
|
|
| 5 |
RUN mkdir -p /etc/sing-box
|
| 6 |
RUN touch /etc/sing-box/config.json
|
| 7 |
RUN chmod 777 /etc/sing-box/config.json
|
| 8 |
-
COPY
|
| 9 |
-
CMD ["python3","/etc/sing-box/
|
|
|
|
| 5 |
RUN mkdir -p /etc/sing-box
|
| 6 |
RUN touch /etc/sing-box/config.json
|
| 7 |
RUN chmod 777 /etc/sing-box/config.json
|
| 8 |
+
COPY main.py /etc/sing-box/main.py
|
| 9 |
+
CMD ["python3","/etc/sing-box/main.py"]
|