Skip to content

Commit

Permalink
Merge pull request #80 from davewalker5/dependabot-updates
Browse files Browse the repository at this point in the history
Dependabot updates
  • Loading branch information
davewalker5 authored Jun 18, 2024
2 parents c5d8b73 + 3f982aa commit 2985886
Show file tree
Hide file tree
Showing 3 changed files with 7 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.2.0.0 /opt/naturerecorderpy-1.2.0.0
COPY naturerecorderpy-1.3.0.0 /opt/naturerecorderpy-1.3.0.0

WORKDIR /opt/naturerecorderpy-1.2.0.0
WORKDIR /opt/naturerecorderpy-1.3.0.0

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

ENV NATURE_RECORDER_DATA_FOLDER=/var/opt/naturerecorderpy-1.2.0.0
ENV NATURE_RECORDER_DB=/var/opt/naturerecorderpy-1.2.0.0/naturerecorder.db
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

ENTRYPOINT [ "python" ]
CMD [ "-m", "naturerec_web", "production" ]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ SQLAlchemy==1.4.27
trio==0.19.0
trio-websocket==0.9.2
typing_extensions==4.0.1
urllib3==1.26.18
urllib3==1.26.19
urllib3-secure-extra==0.1.0
Werkzeug==3.0.3
wsproto==1.0.0
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.2.0",
version="1.3.0",
description="Wildlife sightings database",
packages=setuptools.find_packages("src"),
include_package_data=True,
Expand Down

0 comments on commit 2985886

Please sign in to comment.