-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b968813
commit 7ec6651
Showing
2 changed files
with
395 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,16 @@ | ||
FROM alpine:3 | ||
FROM alpine:3.19 | ||
|
||
# OpenSSL FIPS Configuration | ||
ARG OPENSSL_FIPS_VERSION=2.0.16 | ||
ARG OPENSSL_FIPS_HASH=a3cd13d0521d22dd939063d3b4a0d4ce24494374b91408a05bdaca8b681c63d4 | ||
ARG OPENSSL_VERSION=3.0.8 | ||
|
||
# OpenSSL Configuration | ||
ARG OPENSSL_VERSION=1.0.2k | ||
ARG OPENSSL_HASH=6b3977c61f2aedf0f96367dcfb5c6e578cf37e7b8d913b4ecb6643c3cb88d8c0 | ||
|
||
RUN apk update \ | ||
&& mkdir -p /tmp \ | ||
&& cd /tmp \ | ||
&& apk add ca-certificates \ | ||
&& apk add --no-cache --virtual .build-deps \ | ||
wget \ | ||
gcc \ | ||
gzip \ | ||
tar \ | ||
libc-dev \ | ||
ca-certificates \ | ||
perl \ | ||
make \ | ||
coreutils \ | ||
linux-headers \ | ||
zlib-dev \ | ||
gnupg \ | ||
&& wget --quiet https://www.openssl.org/source/openssl-fips-$OPENSSL_FIPS_VERSION.tar.gz \ | ||
&& wget --quiet https://www.openssl.org/source/openssl-fips-$OPENSSL_FIPS_VERSION.tar.gz.asc \ | ||
&& echo "$OPENSSL_FIPS_HASH openssl-fips-$OPENSSL_FIPS_VERSION.tar.gz" | sha256sum -c - | grep OK \ | ||
&& tar -xzf openssl-fips-$OPENSSL_FIPS_VERSION.tar.gz \ | ||
&& cd openssl-fips-$OPENSSL_FIPS_VERSION \ | ||
&& ./config \ | ||
&& make \ | ||
&& make install \ | ||
&& cd /tmp \ | ||
&& wget --quiet https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz \ | ||
&& wget --quiet https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz.asc \ | ||
&& echo "$OPENSSL_HASH openssl-$OPENSSL_VERSION.tar.gz" | sha256sum -c - | grep OK \ | ||
&& tar -xzf openssl-$OPENSSL_VERSION.tar.gz \ | ||
&& cd openssl-$OPENSSL_VERSION \ | ||
&& perl ./Configure linux-x86_64 \ | ||
--with-fipsdir=/usr/local/ssl/fips-2.0 \ | ||
fips shared no-ssl2 no-ssl3 \ | ||
RUN apk add --no-cache --virtual .build-deps \ | ||
make gcc libgcc musl-dev linux-headers perl vim \ | ||
&& wget https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz \ | ||
&& tar -xf openssl-${OPENSSL_VERSION}.tar.gz\ | ||
&& cd openssl-${OPENSSL_VERSION} \ | ||
&& ./Configure enable-fips --libdir=lib --prefix=/usr \ | ||
&& make \ | ||
&& make install \ | ||
&& ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl \ | ||
&& rm -rf /tmp \ | ||
&& apk del .build-deps | ||
&& make install_fips \ | ||
&& apk del .build-deps \ | ||
&& rm -rf openssl-${OPENSSL_VERSION}.tar.gz openssl-${OPENSSL_VERSION} | ||
|
||
ENV OPENSSL_FIPS 1 | ||
ENV PATH /usr/local/ssl/bin::$PATH | ||
COPY openssl.cnf /etc/ssl/openssl.cnf |
Oops, something went wrong.