Spaces:
Runtime error
Runtime error
Commit
·
de99466
1
Parent(s):
f30649b
fix: set working directory to app in Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -55,6 +55,7 @@ RUN sudo apt update -y && sudo apt upgrade -y && \
|
|
55 |
|
56 |
# Install Python dependencies from requirements.txt
|
57 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
58 |
|
59 |
# Expose the port for the app
|
60 |
EXPOSE 7860
|
|
|
55 |
|
56 |
# Install Python dependencies from requirements.txt
|
57 |
RUN pip install --no-cache-dir -r requirements.txt
|
58 |
+
WORKDIR $HOME/app
|
59 |
|
60 |
# Expose the port for the app
|
61 |
EXPOSE 7860
|