Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -7,4 +7,5 @@ WORKDIR /home/user/app
|
|
| 7 |
COPY --chown=user:user requirements.txt .
|
| 8 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 9 |
COPY --chown=user:user . .
|
|
|
|
| 10 |
CMD chainlit run --host 0.0.0.0 --no-cache -d --port 7860 app.py
|
|
|
|
| 7 |
COPY --chown=user:user requirements.txt .
|
| 8 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 9 |
COPY --chown=user:user . .
|
| 10 |
+
ENV CHAINLIT_HOME=/home/user/.chainlit
|
| 11 |
CMD chainlit run --host 0.0.0.0 --no-cache -d --port 7860 app.py
|