Skip to content

Commit

Permalink
update container base for Python, update requirements, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
eightseventhreethree committed Jan 14, 2024
1 parent fb28469 commit 6eb97aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM python:3.12.0b4-slim-bookworm
FROM python:3.12.1-slim-bookworm
LABEL maintainer="[email protected]"

ADD . /code
RUN pip install -r /code/pip-requirements.txt && \
RUN pip install --no-cache-dir -r /code/pip-requirements.txt && \
apt-get autoclean && \
rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion python/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CONTAINER_REPO=rushsimonson
CONTAINER_NAME=covid-exporter
CONTAINER_VERSION=py-0.0.15
CONTAINER_VERSION=py-0.0.16
CONTAINER_LINUX=$(CONTAINER_NAME)_linux
CONTAINER_ARM=$(CONTAINER_NAME)_arm64

Expand Down
4 changes: 2 additions & 2 deletions python/pip-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
prometheus_client==0.16.0
requests==2.28.2
prometheus_client==0.19.0
requests==2.31.0

0 comments on commit 6eb97aa

Please sign in to comment.