Skip to content

Commit

Permalink
updated comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alvertogit committed Jan 1, 2024
1 parent 99b72b7 commit 2d99f22
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ RUN mkdir -p /app
WORKDIR /app
COPY requirements.txt /app
RUN python3 -m venv .
RUN python3 -m pip install pip==23.3.1
RUN python3 -m pip install setuptools==68.2.2
RUN python3 -m pip install pip==23.3.2
RUN python3 -m pip install setuptools==69.0.3
RUN python3 -m pip install --no-cache-dir -r requirements.txt
COPY ./app /app
EXPOSE 5000
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Command to configure virtual environment with [venv]:
```bash
~/deeplearning_flask$ python3 -m venv dlflask3
~/deeplearning_flask$ source dlflask3/bin/activate
(dlflask3)~/deeplearning_flask$ python3 -m pip install pip==23.3.1
(dlflask3)~/deeplearning_flask$ python3 -m pip install setuptools==68.2.2
(dlflask3)~/deeplearning_flask$ python3 -m pip install pip==23.3.2
(dlflask3)~/deeplearning_flask$ python3 -m pip install setuptools==69.0.3
(dlflask3)~/deeplearning_flask$ python3 -m pip install -r requirements_dev.txt
```

Expand Down Expand Up @@ -218,7 +218,7 @@ A POST example using [curl] from outside [Docker] container is shown below:
## CREDITS

author: alvertogit
copyright: 2018-2023
copyright: 2018-2024

[Python]: https://www.python.org/
[Flask]: https://flask.palletsprojects.com/en/1.1.x/
Expand Down
2 changes: 1 addition & 1 deletion app/app/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__author__ = "alvertogit"
__copyright__ = "Copyright 2018-2023"
__copyright__ = "Copyright 2018-2024"


from flask import Blueprint, jsonify, request
Expand Down
2 changes: 1 addition & 1 deletion app/app/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__author__ = "alvertogit"
__copyright__ = "Copyright 2018-2023"
__copyright__ = "Copyright 2018-2024"


from tensorflow.keras.models import load_model
Expand Down
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__author__ = "alvertogit"
__copyright__ = "Copyright 2018-2023"
__copyright__ = "Copyright 2018-2024"


import os
Expand Down
2 changes: 1 addition & 1 deletion app/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__author__ = "alvertogit"
__copyright__ = "Copyright 2018-2023"
__copyright__ = "Copyright 2018-2024"


import os
Expand Down
2 changes: 1 addition & 1 deletion app/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__author__ = "alvertogit"
__copyright__ = "Copyright 2018-2023"
__copyright__ = "Copyright 2018-2024"


from app import create_app
Expand Down
2 changes: 1 addition & 1 deletion app/tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__author__ = "alvertogit"
__copyright__ = "Copyright 2018-2023"
__copyright__ = "Copyright 2018-2024"


import pytest
Expand Down

0 comments on commit 2d99f22

Please sign in to comment.