diff --git a/Dockerfile b/Dockerfile index 7ea4780..2416ab2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/README.md b/README.md index f811511..56201ea 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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/ diff --git a/app/app/api.py b/app/app/api.py index 7630b7a..c802db1 100644 --- a/app/app/api.py +++ b/app/app/api.py @@ -3,7 +3,7 @@ """ __author__ = "alvertogit" -__copyright__ = "Copyright 2018-2023" +__copyright__ = "Copyright 2018-2024" from flask import Blueprint, jsonify, request diff --git a/app/app/model.py b/app/app/model.py index b276e05..f6943b6 100644 --- a/app/app/model.py +++ b/app/app/model.py @@ -3,7 +3,7 @@ """ __author__ = "alvertogit" -__copyright__ = "Copyright 2018-2023" +__copyright__ = "Copyright 2018-2024" from tensorflow.keras.models import load_model diff --git a/app/config.py b/app/config.py index 66c6a69..436d6b5 100644 --- a/app/config.py +++ b/app/config.py @@ -3,7 +3,7 @@ """ __author__ = "alvertogit" -__copyright__ = "Copyright 2018-2023" +__copyright__ = "Copyright 2018-2024" import os diff --git a/app/server.py b/app/server.py index 234a5bd..b170ac4 100644 --- a/app/server.py +++ b/app/server.py @@ -3,7 +3,7 @@ """ __author__ = "alvertogit" -__copyright__ = "Copyright 2018-2023" +__copyright__ = "Copyright 2018-2024" import os diff --git a/app/tests/conftest.py b/app/tests/conftest.py index 609d843..253fc9f 100644 --- a/app/tests/conftest.py +++ b/app/tests/conftest.py @@ -3,7 +3,7 @@ """ __author__ = "alvertogit" -__copyright__ = "Copyright 2018-2023" +__copyright__ = "Copyright 2018-2024" from app import create_app diff --git a/app/tests/test_app.py b/app/tests/test_app.py index 3fe21c4..de9926a 100644 --- a/app/tests/test_app.py +++ b/app/tests/test_app.py @@ -3,7 +3,7 @@ """ __author__ = "alvertogit" -__copyright__ = "Copyright 2018-2023" +__copyright__ = "Copyright 2018-2024" import pytest