Browse code

Switch Dockerfile.e2e to alpine 3.8

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2018/12/20 23:43:06
Showing 1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 ## Step 1: Build tests
2
-FROM golang:1.11.4-alpine3.7 as builder
2
+FROM golang:1.11.4-alpine3.8 as builder
3 3
 
4 4
 RUN apk --no-cache add \
5 5
     bash \
... ...
@@ -39,7 +39,7 @@ RUN hack/make.sh build-integration-test-binary
39 39
 RUN mkdir -p /output/tests && find . -name test.main -exec cp --parents '{}' /output/tests \;
40 40
 
41 41
 ## Step 2: Generate testing image
42
-FROM alpine:3.7 as runner
42
+FROM alpine:3.8 as runner
43 43
 
44 44
 # GNU tar is used for generating the emptyfs image
45 45
 RUN apk --no-cache add \