Switch Dockerfile.e2e to alpine 3.8
Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 7c8dcebd300262c9f98d92777dd9aab6d4e26f10) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 15148160ec0e63a7e7faab01bfbe99f6951ba313 Component: engine
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
## Step 1: Build tests
|
||||
FROM golang:1.11.4-alpine3.7 as builder
|
||||
FROM golang:1.11.4-alpine3.8 as builder
|
||||
|
||||
RUN apk add --update \
|
||||
bash \
|
||||
@ -40,7 +40,7 @@ RUN hack/make.sh build-integration-test-binary
|
||||
RUN mkdir -p /output/tests && find . -name test.main -exec cp --parents '{}' /output/tests \;
|
||||
|
||||
## Step 2: Generate testing image
|
||||
FROM alpine:3.7 as runner
|
||||
FROM alpine:3.8 as runner
|
||||
|
||||
# GNU tar is used for generating the emptyfs image
|
||||
RUN apk add --update \
|
||||
|
||||
Reference in New Issue
Block a user