From fd41a2f3619e35f9770dfddfc00c2f0eb94637bd Mon Sep 17 00:00:00 2001 From: Andrew Rynhard <andrew@andrewrynhard.com> Date: Sat, 12 Jan 2019 17:49:09 -0800 Subject: [PATCH] chore: use alpine:3.8 as base image (#94) Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com> --- 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" ]