Spaces:
Paused
Paused
Mikiko Bazeley
commited on
Commit
·
90af576
1
Parent(s):
4183666
troubleshoot issues with Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -6,6 +6,7 @@ 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", "app.py", "--port", "7860"]
|
|
|
6 |
WORKDIR $HOME/app
|
7 |
COPY --chown=user . $HOME/app
|
8 |
COPY ./requirements.txt ~/app/requirements.txt
|
9 |
+
RUN pip install --upgrade pip
|
10 |
RUN pip install -r requirements.txt
|
11 |
COPY . .
|
12 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|