File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11ARG DOCKER_BASE_IMAGE=ubuntu
2- FROM ubuntu as BUILDER
2+ FROM ubuntu AS builder
33
44ARG DEPS_WOLFSSL="build-essential autoconf libtool zlib1g-dev libuv1-dev libpam0g-dev git libpcap-dev libcurl4-openssl-dev bsdmainutils netcat-traditional iputils-ping bubblewrap"
55RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y apt-utils \
@@ -18,8 +18,8 @@ RUN git clone --depth=1 --single-branch --branch=main http://github.com/wolfssl/
1818
1919FROM ${DOCKER_BASE_IMAGE}
2020USER root
21- COPY --from=BUILDER /usr/local/lib/libwolfssl.so /usr/local/lib/
22- COPY --from=BUILDER /usr/local/bin/wolfssl* /usr/local/bin/
21+ COPY --from=builder /usr/local/lib/libwolfssl.so /usr/local/lib/
22+ COPY --from=builder /usr/local/bin/wolfssl* /usr/local/bin/
2323RUN ldconfig
2424ENTRYPOINT ["/usr/local/bin/wolfssl" ]
2525LABEL org.opencontainers.image.source=https://github.com/wolfssl/wolfssl
You can’t perform that action at this time.
0 commit comments