Spaces:
Paused
Paused
Update Dockerfile
Browse files- 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
|