Merge pull request #38403 from thaJeztah/switch_to_alpine_3.8

Switch Dockerfile.e2e to alpine 3.8
This commit is contained in:
Tibor Vass 2018-12-21 11:22:44 +01:00 committed by GitHub
commit ab318fa6ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 --no-cache add \
bash \
@ -39,7 +39,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 --no-cache add \