Skip to content

Commit ea8c7c8

Browse files
Merge pull request wolfSSL#8214 from bandi13/fixDockerWarnings
Use proper capitalization
2 parents 0243299 + 93f865f commit ea8c7c8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Docker/wolfCLU/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG DOCKER_BASE_IMAGE=ubuntu
2-
FROM ubuntu as BUILDER
2+
FROM ubuntu AS builder
33

44
ARG DEPS_WOLFSSL="build-essential autoconf libtool zlib1g-dev libuv1-dev libpam0g-dev git libpcap-dev libcurl4-openssl-dev bsdmainutils netcat-traditional iputils-ping bubblewrap"
55
RUN 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

1919
FROM ${DOCKER_BASE_IMAGE}
2020
USER 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/
2323
RUN ldconfig
2424
ENTRYPOINT ["/usr/local/bin/wolfssl"]
2525
LABEL org.opencontainers.image.source=https://github.com/wolfssl/wolfssl

0 commit comments

Comments
 (0)