Spaces:
Runtime error
Runtime error
praneeth dodedu
commited on
Commit
·
50e901b
1
Parent(s):
8990127
added app file
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -4,6 +4,7 @@ USER user
|
|
| 4 |
ENV HOME=/home/user \
|
| 5 |
PATH=/home/user/.local/bin:$PATH
|
| 6 |
WORKDIR $HOME/app
|
|
|
|
| 7 |
COPY --chown=user . $HOME/app
|
| 8 |
COPY ./requirements.txt ~/app/requirements.txt
|
| 9 |
RUN pip install -r requirements.txt
|
|
|
|
| 4 |
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 |
COPY --chown=user . $HOME/app
|
| 9 |
COPY ./requirements.txt ~/app/requirements.txt
|
| 10 |
RUN pip install -r requirements.txt
|