forked from libkermit/compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
29 lines (21 loc) · 814 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM golang:1.8.3
RUN apt-get update && apt-get install -y \
iptables build-essential \
--no-install-recommends
# Install build dependencies
RUN go get golang.org/x/tools/cmd/cover \
&& go get github.com/golang/lint/golint \
&& go get github.com/rancher/trash
WORKDIR /go/src/github.com/libkermit/compose
COPY trash.yml .
RUN trash -k
# Which docker version to test on and what default one to use
ENV DOCKER_VERSION 17.03.2
# Download docker
RUN mkdir -p /usr/local/bin \
&& curl -fL https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}-ce.tgz \
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
# Wrap all commands in the "docker-in-docker" script to allow nested containers
ENTRYPOINT ["hack/dind"]
COPY . /go/src/github.com/libkermit/compose
RUN trash