Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
|
@@ -5,6 +5,12 @@ ENV PORT=7860
|
|
| 5 |
|
| 6 |
WORKDIR /app
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
RUN pip install --no-cache-dir rotating-mitmproxy flask requests
|
| 9 |
|
| 10 |
COPY start.sh /app/start.sh
|
|
|
|
| 5 |
|
| 6 |
WORKDIR /app
|
| 7 |
|
| 8 |
+
# Installer curl (OBLIGATOIRE)
|
| 9 |
+
RUN apt-get update \
|
| 10 |
+
&& apt-get install -y --no-install-recommends curl \
|
| 11 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
+
|
| 13 |
+
# Dépendances Python
|
| 14 |
RUN pip install --no-cache-dir rotating-mitmproxy flask requests
|
| 15 |
|
| 16 |
COPY start.sh /app/start.sh
|