Skip to content
Open
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
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Official Docker images are in the form library/<app> while non-official
# images are in the form <user>/<app>.
FROM docker.io/library/python:3.14.3-alpine3.23 AS compile-stage
FROM docker.io/library/python:3.14.5-alpine3.23 AS compile-stage

###
# Unprivileged user variables
Expand All @@ -10,9 +10,9 @@ ENV CISA_HOME="/home/${CISA_USER}"
ENV VIRTUAL_ENV="${CISA_HOME}/.venv"

# Versions of the Python packages installed directly
ENV PYTHON_PIP_VERSION=26.0.1
ENV PYTHON_PIPENV_VERSION=2026.0.3
ENV PYTHON_SETUPTOOLS_VERSION=82.0.0
ENV PYTHON_PIP_VERSION=26.1.1
ENV PYTHON_PIPENV_VERSION=2026.6.1
ENV PYTHON_SETUPTOOLS_VERSION=82.0.1

###
# Install the specified versions of pip and setuptools into the system
Expand Down Expand Up @@ -44,11 +44,11 @@ RUN python3 -m pip install --no-cache-dir --upgrade \
###
WORKDIR /tmp
COPY src/Pipfile src/Pipfile.lock ./
RUN pipenv install --clear --deploy --extra-pip-args "--no-cache-dir" --verbose
RUN pipenv install --clear --deploy --extra-pip-args="--no-cache-dir" --verbose

# Official Docker images are in the form library/<app> while non-official
# images are in the form <user>/<app>.
FROM docker.io/library/python:3.14.3-alpine3.23 AS build-stage
FROM docker.io/library/python:3.14.5-alpine3.23 AS build-stage

###
# For a list of pre-defined annotation keys and value types see:
Expand Down
2 changes: 1 addition & 1 deletion src/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ example = {file = "https://github.com/cisagov/skeleton-python-library/archive/v0

# This version should match the version of Python in the image
[requires]
python_full_version = "3.14.3"
python_full_version = "3.14.5"
10 changes: 5 additions & 5 deletions src/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading