Skip to content

Commit

Permalink
feat(build): use no ssl image (#5560)
Browse files Browse the repository at this point in the history
Signed-off-by: slonka <slonka@users.noreply.github.com>
  • Loading branch information
slonka authored Jan 31, 2023
1 parent 7622056 commit 3443c6a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mk/docker.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ define build_image
$(DOCKER_REGISTRY)/$(1):$(BUILD_INFO_VERSION)$(if $(IMAGE_ARCH_TAG_ENABLED),-${GOARCH},)
endef

export KUMA_BASE_IMAGE ?= kumahq/base-debian11:no-push
export KUMA_BASE_IMAGE ?= kumahq/base-nossl-debian11:no-push
export KUMA_BASE_ROOT_IMAGE ?= kumahq/base-root-debian11:no-push
export KUMA_STATIC_IMAGE ?= kumahq/static-debian11:no-push
export KUMA_ENVOY_IMAGE ?= kumahq/envoy:no-push
Expand Down
2 changes: 1 addition & 1 deletion tools/releases/dockerfiles/Dockerfile.base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gcr.io/distroless/base-debian11:debug-nonroot
FROM gcr.io/distroless/base-nossl-debian11:debug-nonroot

COPY /tools/releases/templates/LICENSE \
/tools/releases/templates/README \
Expand Down
2 changes: 1 addition & 1 deletion tools/releases/dockerfiles/Dockerfile.base-root
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# use only when root is really needed
FROM gcr.io/distroless/base-debian11:debug
FROM gcr.io/distroless/base-nossl-debian11:debug

COPY /tools/releases/templates/LICENSE \
/tools/releases/templates/README \
Expand Down
2 changes: 1 addition & 1 deletion tools/releases/dockerfiles/Dockerfile.kuma-dp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM kumahq/envoy:no-push as envoy
FROM kumahq/base-debian11:no-push
FROM kumahq/base-nossl-debian11:no-push
ARG ARCH

COPY /build/artifacts-linux-$ARCH/kuma-dp/kuma-dp \
Expand Down
2 changes: 1 addition & 1 deletion tools/releases/dockerfiles/Dockerfile.kumactl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM kumahq/base-debian11:no-push
FROM kumahq/base-nossl-debian11:no-push
ARG ARCH

# override NOTICE
Expand Down

0 comments on commit 3443c6a

Please sign in to comment.