Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ RUN git clone https://github.com/Toperlock/sing-box-subscribe /app
|
|
| 4 |
WORKDIR "app"
|
| 5 |
RUN pip install --upgrade pip
|
| 6 |
RUN pip install -r requirements.txt
|
| 7 |
-
RUN chmod 755
|
| 8 |
-
RUN sed -i "s/debug=true/debug=True, host='0.0.0.0'/g"
|
| 9 |
EXPOSE 5000
|
| 10 |
CMD ["python", "api/app.py"]
|
|
|
|
| 4 |
WORKDIR "app"
|
| 5 |
RUN pip install --upgrade pip
|
| 6 |
RUN pip install -r requirements.txt
|
| 7 |
+
RUN chmod 755 api/app.py
|
| 8 |
+
RUN sed -i "s/debug=true/debug=True, host='0.0.0.0'/g" api/app.py
|
| 9 |
EXPOSE 5000
|
| 10 |
CMD ["python", "api/app.py"]
|