mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Switch Dockerfile.e2e to alpine 3.8
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
3770f38647
commit
7c8dcebd30
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
## Step 1: Build tests
|
## 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 \
|
RUN apk --no-cache add \
|
||||||
bash \
|
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 \;
|
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.7 as runner
|
FROM alpine:3.8 as runner
|
||||||
|
|
||||||
# GNU tar is used for generating the emptyfs image
|
# GNU tar is used for generating the emptyfs image
|
||||||
RUN apk --no-cache add \
|
RUN apk --no-cache add \
|
||||||
|
|
Loading…
Reference in a new issue