Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
|
@@ -43,10 +43,13 @@ ENV CUDA_DEVICE_ORDER=PCI_BUS_ID
|
|
| 43 |
ENV CUDA_VISIBLE_DEVICES=0
|
| 44 |
|
| 45 |
# Set the working directory to the user's home directory
|
| 46 |
-
WORKDIR $HOME
|
| 47 |
|
| 48 |
# Clone the repository (adjust the URL if needed)
|
| 49 |
-
RUN git clone --recursive https://github.com/jnjaby/KEEP.git
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
# Copy the app.py script and requirements file into the container
|
| 52 |
COPY --chown=user:user app.py .
|
|
|
|
| 43 |
ENV CUDA_VISIBLE_DEVICES=0
|
| 44 |
|
| 45 |
# Set the working directory to the user's home directory
|
| 46 |
+
WORKDIR $HOME
|
| 47 |
|
| 48 |
# Clone the repository (adjust the URL if needed)
|
| 49 |
+
RUN git clone --recursive https://github.com/jnjaby/KEEP.git app
|
| 50 |
+
|
| 51 |
+
# Set the working directory to the app directory
|
| 52 |
+
WORKDIR $HOME/app
|
| 53 |
|
| 54 |
# Copy the app.py script and requirements file into the container
|
| 55 |
COPY --chown=user:user app.py .
|