Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -33,7 +33,10 @@ RUN export LD_LIBRARY_PATH=`python3 -c 'import os; import nvidia.cublas.lib; imp
|
|
| 33 |
# Copy the current directory contents into the container at /app
|
| 34 |
COPY --chown=user . $HOME/app
|
| 35 |
|
| 36 |
-
COPY ./requirements.txt /home/user/app/requirements.txt
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
RUN chmod -R 777 /home/user/app/*
|
| 39 |
|
|
|
|
| 33 |
# Copy the current directory contents into the container at /app
|
| 34 |
COPY --chown=user . $HOME/app
|
| 35 |
|
| 36 |
+
#COPY ./requirements.txt /home/user/app/requirements.txt
|
| 37 |
+
COPY ./* /home/user/app/
|
| 38 |
+
|
| 39 |
+
RUN ls -la
|
| 40 |
|
| 41 |
RUN chmod -R 777 /home/user/app/*
|
| 42 |
|