Skip to content

Commit

Permalink
upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alvertogit committed Feb 18, 2024
1 parent 2918b6d commit 4c5bfb3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /app
COPY requirements.txt /app
RUN python3 -m venv .
RUN python3 -m pip install pip==24.0
RUN python3 -m pip install setuptools==69.0.3
RUN python3 -m pip install setuptools==69.1.0
RUN python3 -m pip install --no-cache-dir -r requirements.txt
COPY ./app /app
EXPOSE 5000
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Command to configure virtual environment with [venv]:
~/deeplearning_flask$ python3 -m venv dlflask3
~/deeplearning_flask$ source dlflask3/bin/activate
(dlflask3)~/deeplearning_flask$ python3 -m pip install pip==24.0
(dlflask3)~/deeplearning_flask$ python3 -m pip install setuptools==69.0.3
(dlflask3)~/deeplearning_flask$ python3 -m pip install setuptools==69.1.0
(dlflask3)~/deeplearning_flask$ python3 -m pip install -r requirements_dev.txt
```

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Flask==3.0.2
gunicorn==21.2.0
numpy==1.26.4
Pillow==10.2.0
pytest==8.0.0
pytest==8.0.1
requests==2.31.0
scikit-image==0.22.0
tensorflow==2.15.0
4 changes: 2 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-r requirements.txt
jupyterlab==4.1.0
matplotlib==3.8.2
jupyterlab==4.1.1
matplotlib==3.8.3

0 comments on commit 4c5bfb3

Please sign in to comment.