PatienceIzere commited on
Commit
d6d366b
·
verified ·
1 Parent(s): e0c1c68

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,6 +3,7 @@ FROM python:3.13.5-slim
3
  WORKDIR /app
4
 
5
  # Copy setup script and make it executable
 
6
  COPY setup.sh .
7
  RUN chmod +x setup.sh
8
 
@@ -15,7 +16,6 @@ RUN apt-get update && apt-get install -y \
15
  git \
16
  && rm -rf /var/lib/apt/lists/*
17
 
18
- COPY requirements.txt ./
19
  COPY src/ ./src/
20
 
21
  RUN pip3 install -r requirements.txt
@@ -35,4 +35,4 @@ ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "-
35
  #EXPOSE 7860
36
 
37
  # Command to run the application
38
- #CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
 
3
  WORKDIR /app
4
 
5
  # Copy setup script and make it executable
6
+ COPY requirements.txt
7
  COPY setup.sh .
8
  RUN chmod +x setup.sh
9
 
 
16
  git \
17
  && rm -rf /var/lib/apt/lists/*
18
 
 
19
  COPY src/ ./src/
20
 
21
  RUN pip3 install -r requirements.txt
 
35
  #EXPOSE 7860
36
 
37
  # Command to run the application
38
+ #CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]