Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,8 @@ ENV AIRFLOW__WEBSERVER__PORT=7860
|
|
| 8 |
|
| 9 |
# Install additional packages if needed
|
| 10 |
COPY requirements.txt .
|
| 11 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 12 |
|
| 13 |
# Expose the port for the webserver
|
| 14 |
EXPOSE 7860
|
|
|
|
| 8 |
|
| 9 |
# Install additional packages if needed
|
| 10 |
COPY requirements.txt .
|
| 11 |
+
RUN pip install apache-airflow==2.5.1 --no-cache-dir -r requirements.txt
|
| 12 |
+
|
| 13 |
|
| 14 |
# Expose the port for the webserver
|
| 15 |
EXPOSE 7860
|