fffiloni commited on
Commit
79960ec
·
verified ·
1 Parent(s): fc7c93b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -27,6 +27,9 @@ WORKDIR /app
27
  # Clone the repository (adjust the URL if needed)
28
  RUN git clone --recursive https://github.com/jnjaby/KEEP.git .
29
 
 
 
 
30
  # Install Python dependencies from requirements.txt
31
  RUN pip install --upgrade pip
32
  RUN pip install -r requirements.txt
 
27
  # Clone the repository (adjust the URL if needed)
28
  RUN git clone --recursive https://github.com/jnjaby/KEEP.git .
29
 
30
+ # Copy the app.py script into the container
31
+ COPY app.py /app/
32
+
33
  # Install Python dependencies from requirements.txt
34
  RUN pip install --upgrade pip
35
  RUN pip install -r requirements.txt