Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -6,6 +6,8 @@ ENV HOME=/home/user \
|
|
6 |
WORKDIR $HOME/app
|
7 |
COPY --chown=user . $HOME/app
|
8 |
COPY ./requirements.txt ~/app/requirements.txt
|
|
|
|
|
9 |
RUN pip install -r requirements.txt
|
10 |
COPY . .
|
11 |
CMD ["chainlit", "run", "main.py", "-d", "--port", "7860"]
|
|
|
6 |
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 /app/.chainlit/
|
11 |
RUN pip install -r requirements.txt
|
12 |
COPY . .
|
13 |
CMD ["chainlit", "run", "main.py", "-d", "--port", "7860"]
|