samarth-ht commited on
Commit
1489e52
·
1 Parent(s): 468aa68

fix: replace CMD with RUN command to list files in Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -56,7 +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
- CMD ["ls -a"]
60
 
61
  # Expose the port for the app
62
  EXPOSE 7860
 
56
  # Install Python dependencies from requirements.txt
57
  RUN pip install --no-cache-dir -r requirements.txt
58
  WORKDIR $HOME/app
59
+ RUN ls
60
 
61
  # Expose the port for the app
62
  EXPOSE 7860