diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-12-21 22:30:26 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-12-21 22:30:26 +0100 |
| commit | f4aacbc854765d87d4313c9109d375a422eeea94 (patch) | |
| tree | 4320e30a5d4737107a84fb858b0311030b0a23f5 | |
| parent | b9ef0c163b2a1ce7234681182df3a0589990f578 (diff) | |
Add LibreTLS-3.8.1
| -rw-r--r-- | LibreTLS/3.8.1/Dockerfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/LibreTLS/3.8.1/Dockerfile b/LibreTLS/3.8.1/Dockerfile new file mode 100644 index 0000000..1c713b5 --- /dev/null +++ b/LibreTLS/3.8.1/Dockerfile @@ -0,0 +1,17 @@ +FROM alpine +RUN apk update && apk add \ + make \ + gcc \ + musl-dev \ + wget +COPY --from=libopenssl:3.1.1-minimal /opt/spm/openssl-3.1.1/ /usr/local/ +RUN wget https://causal.agency/libretls/libretls-3.8.1.tar.gz +RUN tar -xf libretls-3.8.1.tar.gz +WORKDIR /libretls-3.8.1 +ARG PREFIX=/opt/spm/libretls-3.8.1 +RUN ./configure \ + --prefix=$PREFIX \ + --enable-shared=no \ + CFLAGS='-ffunction-sections -fdata-sections -Os' +RUN make -j$(nproc --all) +RUN make install |
