Skip to content

Commit

Permalink
3.13 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu authored Oct 11, 2024
1 parent 0e8fbd1 commit 54dc6c7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ DEBIAN_CODENAME = bookworm
OPENSSL_VERSION = 3.0.9
OPENSSL_VERSION_SUFFIX = ak-fips
# https://www.python.org/doc/versions/
PYTHON_VERSION = 3.12.7
PYTHON_VERSION = 3.13.0
# https://www.aleksey.com/xmlsec/
XMLSEC_VERSION = 1.3.5

Expand Down
4 changes: 2 additions & 2 deletions debian-fips/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DEBIAN_CODENAME
ARG DEBIAN_CODENAME=bookworm

FROM docker.io/library/debian:${DEBIAN_CODENAME}-slim AS equivs-builder

Expand Down Expand Up @@ -67,6 +67,6 @@ RUN mkdir -p $build_root && \
echo "\n[algorithm_sect]\ndefault_properties = fips=yes" >> /usr/local/ssl/openssl.cnf

RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates && \
apt-get install -y --no-install-recommends ca-certificates wget && \
rm -rf /var/lib/apt/lists/*
ENV SSL_CERT_DIR=/etc/ssl/certs
6 changes: 3 additions & 3 deletions python-fips/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ RUN set -eux; \
done

# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
ENV PYTHON_PIP_VERSION 24.0
ENV PYTHON_PIP_VERSION 24.1.1
# https://github.com/pypa/get-pip
ENV PYTHON_GET_PIP_URL https://github.com/pypa/get-pip/raw/dbf0c85f76fb6e1ab42aa672ffca6f0a675d9ee4/public/get-pip.py
ENV PYTHON_GET_PIP_SHA256 dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9
ENV PYTHON_GET_PIP_URL https://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
ENV PYTHON_GET_PIP_SHA256 bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a

RUN set -eux; \
\
Expand Down
3 changes: 1 addition & 2 deletions xmlsec1-fips/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
ARG BUILD_IMAGE
ARG BUILD_IMAGE=ghcr.io/goauthentik/fips-debian:bookworm-slim-fips

FROM ${BUILD_IMAGE}

ARG XMLSEC_VERSION

ENV build_root="/build"
ENV xmlsec_gpg_key="00FDD6A7DFB81C88F34B9BF0E63ECDEF9E1D829E"

RUN mkdir -p ${build_root} && \
cd ${build_root} && \
Expand Down

0 comments on commit 54dc6c7

Please sign in to comment.