jonathanjordan21 commited on
Commit
02d937f
·
verified ·
1 Parent(s): 28f92e7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -7,7 +7,8 @@ ENV AIRFLOW__CORE__LOAD_EXAMPLES=False
7
  ENV AIRFLOW__WEBSERVER__PORT=7860
8
 
9
  # Install additional packages if needed
10
- # RUN pip install <your-required-packages>
 
11
 
12
  # Expose the port for the webserver
13
  EXPOSE 7860
 
7
  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