diff --git a/docker/Dockerfile b/docker/Dockerfile index a3a829f..45edbdc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,12 +1,11 @@ FROM python:3.10-slim-bullseye AS runtime -COPY naturerecorderpy-1.12.0.0 /opt/naturerecorderpy - +COPY naturerecorderpy-1.13.0.0 /opt/naturerecorderpy WORKDIR /opt/naturerecorderpy RUN apt-get update -y RUN pip install -r requirements.txt -RUN pip install nature_recorder-1.12.0-py3-none-any.whl +RUN pip install nature_recorder-1.13.0-py3-none-any.whl ENV NATURE_RECORDER_DATA_FOLDER=/var/opt/naturerecorderpy ENV NATURE_RECORDER_DB=/var/opt/naturerecorderpy/naturerecorder.db diff --git a/requirements.txt b/requirements.txt index 1565c63..7816d0a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -29,7 +29,7 @@ h11==0.12.0 idna==3.7 imagesize==1.3.0 itsdangerous==2.0.1 -Jinja2==3.1.5 +Jinja2==3.1.6 kiwisolver==1.3.2 locust==2.5.1 Mako==1.2.4 diff --git a/setup.py b/setup.py index 2b0f179..453d617 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def find_package_files(directory, remove_root): setuptools.setup( name="nature_recorder", - version="1.12.0", + version="1.13.0", description="Wildlife sightings database", packages=setuptools.find_packages("src"), include_package_data=True,