From 6c74874512e4c2a084a4f4ead866f7acaf49507d Mon Sep 17 00:00:00 2001 From: alelech <4152206+alelech@users.noreply.github.com> Date: Mon, 4 Feb 2019 15:26:41 +0100 Subject: [PATCH] #3 Switch alpine from latest tag to specific version (#4) fixes #3. Versioning with specific tag also allows to trigger build on version change or as @bsideup suggested monitoring it with dependabot. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5ebb012..d9a52e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN make bootstrap COPY . . RUN make build -FROM alpine:latest +FROM alpine:3.9 RUN apk --no-cache add ca-certificates COPY --from=workspace /go/src/github.com/testcontainers/moby-ryuk/bin/moby-ryuk /app CMD ["/app"]