Skip to content

Commit

Permalink
Switch Dockerfile.e2e to alpine 3.8
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Dec 20, 2018
1 parent 3770f38 commit 7c8dceb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.e2e
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down Expand Up @@ -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 \
Expand Down

0 comments on commit 7c8dceb

Please sign in to comment.