From b8fbf11b5c76cac4349e3563f2225ccd88d08703 Mon Sep 17 00:00:00 2001 From: Andrew Rynhard Date: Sat, 12 Jan 2019 17:40:18 -0800 Subject: [PATCH] chore: use alpine:3.8 as base image Signed-off-by: Andrew Rynhard --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b8a3726b..0e5784f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,6 @@ COPY ./hack ./hack RUN chmod +x ./hack/test.sh RUN ./hack/test.sh --all -FROM scratch AS image +FROM alpine:3.8 AS image COPY --from=build /conform-linux-amd64 /conform ENTRYPOINT [ "/conform" ]