Skip to content

Commit

Permalink
Dependabot updates
Browse files Browse the repository at this point in the history
  • Loading branch information
davewalker5 committed Jul 9, 2024
1 parent 2985886 commit 30801dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 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.3.0.0 /opt/naturerecorderpy-1.3.0.0
COPY naturerecorderpy-1.4.0.0 /opt/naturerecorderpy-1.4.0.0

WORKDIR /opt/naturerecorderpy-1.3.0.0
WORKDIR /opt/naturerecorderpy-1.4.0.0

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

ENV NATURE_RECORDER_DATA_FOLDER=/var/opt/naturerecorderpy-1.3.0.0
ENV NATURE_RECORDER_DB=/var/opt/naturerecorderpy-1.3.0.0/naturerecorder.db
ENV NATURE_RECORDER_DATA_FOLDER=/var/opt/naturerecorderpy-1.4.0.0
ENV NATURE_RECORDER_DB=/var/opt/naturerecorderpy-1.4.0.0/naturerecorder.db

ENTRYPOINT [ "python" ]
CMD [ "-m", "naturerec_web", "production" ]
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Babel==2.9.1
beautifulsoup4==4.11.1
behave==1.2.6
Brotli==1.0.9
certifi==2023.7.22
certifi==2024.7.4
cffi==1.15.0
charset-normalizer==2.0.8
click==8.0.3
Expand Down Expand Up @@ -54,6 +54,7 @@ pyparsing==3.0.6
python-dateutil==2.8.2
python-dotenv==0.19.2
pytz==2021.3
pywin32==306
pyzmq==22.3.0
requests==2.32.3
roundrobin==0.0.2
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.3.0",
version="1.4.0",
description="Wildlife sightings database",
packages=setuptools.find_packages("src"),
include_package_data=True,
Expand Down

0 comments on commit 30801dd

Please sign in to comment.