Aniket2006 commited on
Commit
5eda52a
·
1 Parent(s): 853c631

Fix Dockerfile to copy vegetation_indices.py

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -12,8 +12,9 @@ RUN apt-get update && apt-get install -y \
12
  COPY requirements.txt .
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
- # Copy application
16
  COPY app.py .
 
17
 
18
  # Expose port
19
  EXPOSE 7860
 
12
  COPY requirements.txt .
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
+ # Copy application files
16
  COPY app.py .
17
+ COPY vegetation_indices.py .
18
 
19
  # Expose port
20
  EXPOSE 7860