Ilia Larchenko commited on
Commit
9493cef
1 Parent(s): 1dc8a5d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,9 +1,9 @@
1
- FROM python:3.7-buster
2
  EXPOSE 8501
3
  WORKDIR /code
4
  COPY requirements.txt requirements.txt
5
  RUN python3 -m pip install --upgrade pip setuptools wheel
6
- RUN pip install -r requirements.txt
7
  COPY . .
8
  RUN bash setup_docker.sh
9
  CMD ["streamlit", "run", "src/app.py"]
 
1
+ FROM python:3.9.16-buster
2
  EXPOSE 8501
3
  WORKDIR /code
4
  COPY requirements.txt requirements.txt
5
  RUN python3 -m pip install --upgrade pip setuptools wheel
6
+ RUN python3 -m pip install -r /requirements.txt
7
  COPY . .
8
  RUN bash setup_docker.sh
9
  CMD ["streamlit", "run", "src/app.py"]