From faa8d94a29efabd0d9762e42d2ef9bb3d8cb9522 Mon Sep 17 00:00:00 2001 From: Frederic Crozat Date: Mon, 12 Sep 2022 10:34:54 +0200 Subject: [PATCH] no need to install packages, they are part of golang image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 16f5c8c5..b2d062cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ FROM crazymax/goreleaser-xx:${GORELEASER_XX_VERSION} AS goreleaser-xx #FROM $BCI_GO:$GO_VERSION AS base FROM registry.suse.com/bci/golang:1.18 AS base COPY --from=goreleaser-xx / / -RUN zypper --non-interactive install -y file git-core +#RUN zypper --non-interactive install -y file git-core WORKDIR /src FROM base AS build