blob: 1c713b589fec37272118d4a728158298ea622e00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|