Spaces:
Runtime error
Runtime error
Commit
·
fa46f44
1
Parent(s):
de99466
fix: add default CMD to list files in working directory
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -56,6 +56,7 @@ RUN sudo apt update -y && sudo apt upgrade -y && \
|
|
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
|
|
|
56 |
# Install Python dependencies from requirements.txt
|
57 |
RUN pip install --no-cache-dir -r requirements.txt
|
58 |
WORKDIR $HOME/app
|
59 |
+
CMD ["ls -a"]
|
60 |
|
61 |
# Expose the port for the app
|
62 |
EXPOSE 7860
|