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