Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -6,6 +6,8 @@ ENV AIRFLOW_HOME=/opt/airflow
|
|
6 |
ENV AIRFLOW__CORE__LOAD_EXAMPLES=False
|
7 |
ENV AIRFLOW__WEBSERVER__PORT=7860
|
8 |
|
|
|
|
|
9 |
# Install additional packages if needed
|
10 |
COPY requirements.txt .
|
11 |
RUN pip install apache-airflow==2.9.2 --no-cache-dir -r requirements.txt
|
|
|
6 |
ENV AIRFLOW__CORE__LOAD_EXAMPLES=False
|
7 |
ENV AIRFLOW__WEBSERVER__PORT=7860
|
8 |
|
9 |
+
RUN useradd -ms /bin/bash airflow
|
10 |
+
|
11 |
# Install additional packages if needed
|
12 |
COPY requirements.txt .
|
13 |
RUN pip install apache-airflow==2.9.2 --no-cache-dir -r requirements.txt
|