Spaces:
Runtime error
Runtime error
praneeth dodedu
commited on
Commit
·
1c2d6bd
1
Parent(s):
b29f37f
added app file
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -5,9 +5,9 @@ ENV HOME=/home/user \
|
|
| 5 |
PATH=/home/user/.local/bin:$PATH
|
| 6 |
WORKDIR $HOME/app
|
| 7 |
RUN pip install --no-cache-dir --upgrade pip
|
| 8 |
-
RUN chmod 777 ./.chainlit
|
| 9 |
COPY --chown=user . $HOME/app
|
| 10 |
COPY ./requirements.txt ~/app/requirements.txt
|
| 11 |
RUN pip install -r requirements.txt
|
|
|
|
| 12 |
COPY . .
|
| 13 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|
|
|
|
| 5 |
PATH=/home/user/.local/bin:$PATH
|
| 6 |
WORKDIR $HOME/app
|
| 7 |
RUN pip install --no-cache-dir --upgrade pip
|
|
|
|
| 8 |
COPY --chown=user . $HOME/app
|
| 9 |
COPY ./requirements.txt ~/app/requirements.txt
|
| 10 |
RUN pip install -r requirements.txt
|
| 11 |
+
RUN chmod 777 $HOME/app/.chainlit
|
| 12 |
COPY . .
|
| 13 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|