Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -5,7 +5,8 @@ ENV PATH="/home/user/.local/bin:$PATH"
|
|
5 |
WORKDIR /app
|
6 |
COPY --chown=user ./requirements.txt requirements.txt
|
7 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
8 |
-
COPY --chown=user . /app
|
|
|
9 |
EXPOSE 7860
|
10 |
|
11 |
CMD ["python", "app.py"]
|
|
|
5 |
WORKDIR /app
|
6 |
COPY --chown=user ./requirements.txt requirements.txt
|
7 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
8 |
+
COPY --chown=user . /app
|
9 |
+
|
10 |
EXPOSE 7860
|
11 |
|
12 |
CMD ["python", "app.py"]
|