diff --git a/images/haproxy/Dockerfile b/images/haproxy/Dockerfile index 7d233758..28e66965 100644 --- a/images/haproxy/Dockerfile +++ b/images/haproxy/Dockerfile @@ -48,10 +48,8 @@ RUN mkdir -p "${STAGE_DIR}" && \ ################################################################################ -# haproxy is a c++ binary, so we will use the c++ distroless image # See: https://github.com/GoogleContainerTools/distroless/tree/main/base -# See: https://github.com/GoogleContainerTools/distroless/tree/main/cc -# This has /etc/passwd, tzdata, cacerts, glibc, libssl, openssl, and libgcc1 +# This has /etc/passwd, tzdata, cacerts FROM "gcr.io/distroless/static-debian11" ARG STAGE_DIR="/opt/stage" diff --git a/images/haproxy/README.md b/images/haproxy/README.md index 7972d8c8..307bfde6 100644 --- a/images/haproxy/README.md +++ b/images/haproxy/README.md @@ -9,6 +9,6 @@ hot reload it at runtime with the actual desired config. ## Building -You can `docker build -t kindest/haproxy .` in this directory to build a test image. +You can `make quick` in this directory to build a test image. -To push an actual image use `./push-cross.sh`. \ No newline at end of file +To push an actual image use `make push`.