Mercurial > public > ssdt-docker
annotate bamboo-agent/Dockerfile @ 257:39e21a6bed19
update container capabilities
author | smith@nwoca.org |
---|---|
date | Wed, 30 May 2018 17:34:20 +0100 |
parents | 538179e4c675 |
children | 0fae07b2519b |
rev | line source |
---|---|
249 | 1 FROM ubuntu:16.04 |
2 | |
3 RUN apt-get update | |
4 RUN apt-get install -y ca-certificates | |
5 | |
6 # set up nsswitch.conf for Go's "netgo" implementation (which Docker explicitly uses) | |
7 # - https://github.com/docker/docker-ce/blob/v17.09.0-ce/components/engine/hack/make.sh#L149 | |
8 # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 | |
9 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf | |
10 RUN echo 'hosts: files dns' > /etc/nsswitch.conf | |
11 | |
12 ENV DOCKER_CHANNEL stable | |
13 ENV DOCKER_VERSION 17.03.2-ce | |
14 ENV PATH "$PATH:/usr/local/bin" | |
15 ENV DOCKER_HOST unix:///var/run/docker.sock | |
16 #RUN set -ex | |
17 # why we use "curl" instead of "wget": | |
18 # + wget -O docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-17.03.1-ce.tgz | |
19 # Connecting to download.docker.com (54.230.87.253:443) | |
20 # wget: error getting response: Connection reset by peer | |
21 | |
22 RUN apt-get update -y | |
23 | |
24 | |
25 RUN apt-get install -y mercurial \ | |
26 | |
253
538179e4c675
adding bamboo agent configuration files - fix 2
aldrich@nwoca.org
parents:
252
diff
changeset
|
27 # && apt-get install -y vim \ |
249 | 28 |
253
538179e4c675
adding bamboo agent configuration files - fix 2
aldrich@nwoca.org
parents:
252
diff
changeset
|
29 # && apt-get install -y nano \ |
249 | 30 |
31 && apt-get install -y tar \ | |
32 | |
33 && apt-get install -y curl \ | |
250
a7ae41f4a55b
adding bamboo agent configuration files - fix 1
aldrich@nwoca.org
parents:
249
diff
changeset
|
34 |
a7ae41f4a55b
adding bamboo agent configuration files - fix 1
aldrich@nwoca.org
parents:
249
diff
changeset
|
35 && apt-get install -y unzip \ |
249 | 36 |
37 && apt-get install -y openjdk-8-jdk | |
251 | 38 |
39 ENV ANT_VERSION 1.10.3 | |
40 RUN cd && \ | |
41 curl -fL -o apache-ant-bin.tar.gz http://www.us.apache.org/dist//ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz && \ | |
42 tar -xzf apache-ant-bin.tar.gz && \ | |
43 mv apache-ant-${ANT_VERSION} /opt/ant && \ | |
252 | 44 rm apache-ant-bin.tar.gz |
251 | 45 ENV ANT_HOME /opt/ant |
46 ENV PATH ${PATH}:/opt/ant/bin | |
249 | 47 |
48 RUN curl -fL -o docker.tgz "https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz"; | |
49 RUN tar --extract \ | |
50 --file docker.tgz \ | |
51 --strip-components 1 \ | |
52 --directory /usr/local/bin/ \ | |
53 ; \ | |
54 rm docker.tgz; \ | |
55 \ | |
56 apt-get autoremove \ | |
57 \ | |
58 dockerd -v; \ | |
59 docker -v | |
60 | |
61 #COPY modprobe.sh /usr/local/bin/modprobe | |
62 COPY docker-entrypoint.sh /usr/local/bin/ | |
63 | |
64 run chmod +x /usr/local/bin/docker-entrypoint.sh | |
65 | |
66 #EXPOSE 2375/tcp | |
67 | |
68 COPY atlassian-bamboo-agent-installer-6.5.0.jar /root | |
69 | |
251 | 70 RUN mkdir -p /root/bamboo-agent-home/bin |
71 COPY bamboo-capabilities.properties /root/bamboo-agent-home/bin/bamboo-capabilities.properties | |
249 | 72 |
253
538179e4c675
adding bamboo agent configuration files - fix 2
aldrich@nwoca.org
parents:
252
diff
changeset
|
73 RUN curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose |
538179e4c675
adding bamboo agent configuration files - fix 2
aldrich@nwoca.org
parents:
252
diff
changeset
|
74 |
538179e4c675
adding bamboo agent configuration files - fix 2
aldrich@nwoca.org
parents:
252
diff
changeset
|
75 RUN chmod +x /usr/local/bin/docker-compose |
538179e4c675
adding bamboo agent configuration files - fix 2
aldrich@nwoca.org
parents:
252
diff
changeset
|
76 |
249 | 77 ENTRYPOINT ["docker-entrypoint.sh"] |
78 | |
79 CMD java -jar /root/atlassian-bamboo-agent-installer-6.5.0.jar $BAMBOO_SERVER/agentServer/ | |
80 #CMD [] | |
81 |