Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM python:3.10-slim-bullseye AS runtime

COPY naturerecorderpy-1.15.0.0 /opt/naturerecorderpy

WORKDIR /opt/naturerecorderpy

RUN apt-get update -y
RUN pip install -r requirements.txt
RUN pip install nature_recorder-1.15.0-py3-none-any.whl

ENV NATURE_RECORDER_DATA_FOLDER=/var/opt/naturerecorderpy
ENV NATURE_RECORDER_DB=/var/opt/naturerecorderpy/naturerecorder.db

ENTRYPOINT [ "python" ]
CMD [ "-m", "naturerec_web", "production" ]
FROM python:3.10-slim-bullseye AS runtime
COPY naturerecorderpy-1.16.0.0 /opt/naturerecorderpy
WORKDIR /opt/naturerecorderpy
RUN apt-get update -y
RUN pip install -r requirements.txt
RUN pip install nature_recorder-1.16.0-py3-none-any.whl
ENV NATURE_RECORDER_DATA_FOLDER=/var/opt/naturerecorderpy
ENV NATURE_RECORDER_DB=/var/opt/naturerecorderpy/naturerecorder.db
ENTRYPOINT [ "python" ]
CMD [ "-m", "naturerec_web", "production" ]
2 changes: 1 addition & 1 deletion reports/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ stack-data==0.6.3
tenacity==9.1.2
terminado==0.18.1
tinycss2==1.4.0
tornado==6.4.2
tornado==6.5
tqdm==4.67.1
traitlets==5.14.3
types-python-dateutil==2.9.0.20241206
Expand Down
9 changes: 5 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ docutils==0.17.1
Flask==2.2.5
Flask-Login==0.6.3
Flask-WTF==1.2.1
greenlet==3.0.3
h11==0.12.0
greenlet==3.2.2
h11==0.16.0
idna==3.7
imagesize==1.3.0
itsdangerous==2.0.1
Jinja2==3.1.6
Mako==1.2.4
MarkupSafe==2.1.2
numpy==1.23.1
numpy==2.2.5
outcome==1.1.0
pandas==1.3.5
pandas==2.2.3
pdfkit==1.0.0
pgeocode==0.3.0
pycountry==20.7.3
Expand All @@ -45,6 +45,7 @@ SQLAlchemy==1.4.27
trio==0.19.0
trio-websocket==0.9.2
typing_extensions==4.0.1
tzdata==2025.2
urllib3==1.26.19
urllib3-secure-extra==0.1.0
Werkzeug==3.0.6
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def find_package_files(directory, remove_root):

setuptools.setup(
name="nature_recorder",
version="1.15.0",
version="1.16.0",
description="Wildlife sightings database",
packages=setuptools.find_packages("src"),
include_package_data=True,
Expand Down