Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -8,7 +8,5 @@ COPY --chown=user . $HOME/app
|
|
| 8 |
COPY ./requirements.txt ~/app/requirements.txt
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
COPY . .
|
| 11 |
-
|
| 12 |
-
CMD ["chmod" "-r" "777" "$HOME/app"]
|
| 13 |
-
USER user
|
| 14 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|
|
|
|
| 8 |
COPY ./requirements.txt ~/app/requirements.txt
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
COPY . .
|
| 11 |
+
RUN chown -R user:user $HOME/app
|
|
|
|
|
|
|
| 12 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|