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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM alpine:3.23 AS python-fips
FROM alpine:3.24 AS python-fips

# Only source version validated under FIPS 140-3 (CMVP #4985). Must not be
# bumped automatically: any other version leaves the validated lineage.
Expand Down
2 changes: 1 addition & 1 deletion legacy/Dockerfile_python
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM alpine:3.23 AS base
FROM alpine:3.24 AS base

ARG OPENSSL_VERSION=3.6.3
ARG PYTHON_VERSION=3.12.14

ENV PATH /usr/local/bin:$PATH

Check warning on line 6 in legacy/Dockerfile_python

View workflow job for this annotation

GitHub Actions / Build filigran/python-fips

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV LANG C.UTF-8

Check warning on line 7 in legacy/Dockerfile_python

View workflow job for this annotation

GitHub Actions / Build filigran/python-fips

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Install OpenSSL FIPS
RUN set -ex \
Expand Down
2 changes: 1 addition & 1 deletion legacy/Dockerfile_python_nodejs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM alpine:3.23 AS base
FROM alpine:3.24 AS base

ARG OPENSSL_VERSION=3.6.3
ARG PYTHON_VERSION=3.12.14

ENV PATH /usr/local/bin:$PATH

Check warning on line 6 in legacy/Dockerfile_python_nodejs

View workflow job for this annotation

GitHub Actions / Build filigran/python-nodejs-fips

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV LANG C.UTF-8

Check warning on line 7 in legacy/Dockerfile_python_nodejs

View workflow job for this annotation

GitHub Actions / Build filigran/python-nodejs-fips

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Install OpenSSL FIPS
RUN set -ex \
Expand Down
Loading