From 573fff0d5075c6857b0c8b96642d611f41a871de Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Tue, 25 Jan 2022 06:57:24 +0300 Subject: [PATCH] Change the Docker image's base to `busybox:latest` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e664a50..0066618 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY server server COPY Makefile . RUN make build GOOS=linux GOARCH=${GOARCH} -FROM ${ARCH}/alpine:3.15 +FROM ${ARCH}/busybox:latest ARG ARCH ARG GOARCH COPY --from=builder ["/tmp/build/basenine_linux_${GOARCH}", "./basenine"]