浏览代码

Dockerfile.e2e bump alpine 3.9

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 6 年之前
父节点
当前提交
eaa4fa9992
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Dockerfile.e2e

+ 2 - 2
Dockerfile.e2e

@@ -1,5 +1,5 @@
 ## Step 1: Build tests
 ## Step 1: Build tests
-FROM golang:1.11.9-alpine3.8 as builder
+FROM golang:1.11.9-alpine3.9 as builder
 
 
 RUN apk add --update \
 RUN apk add --update \
     bash \
     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 \;
 RUN mkdir -p /output/tests && find . -name test.main -exec cp --parents '{}' /output/tests \;
 
 
 ## Step 2: Generate testing image
 ## Step 2: Generate testing image
-FROM alpine:3.8 as runner
+FROM alpine:3.9 as runner
 
 
 # GNU tar is used for generating the emptyfs image
 # GNU tar is used for generating the emptyfs image
 RUN apk add --update \
 RUN apk add --update \