-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
27 lines (16 loc) · 1020 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
FROM debian
ADD https://github.com/Landoop/coyote/releases/download/v1.5/coyote-1.5-linux-amd64 /usr/local/bin
RUN chmod 755 /usr/local/bin/coyote-1.5-linux-amd64
RUN apt-get update && apt-get -y install curl apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
RUN apt-get update && apt-get -y install docker-ce
RUN curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
RUN chmod +x /usr/local/bin/docker-compose
VOLUME /integrationtests
WORKDIR /integrationtests
ENTRYPOINT ["coyote-1.5-linux-amd64"]