comparison bamboo-agent/Dockerfile @ 253:538179e4c675

adding bamboo agent configuration files - fix 2
author aldrich@nwoca.org
date Wed, 23 May 2018 17:46:42 +0100
parents 30d959c35269
children 0fae07b2519b
comparison
equal deleted inserted replaced
252:30d959c35269 253:538179e4c675
22 RUN apt-get update -y 22 RUN apt-get update -y
23 23
24 24
25 RUN apt-get install -y mercurial \ 25 RUN apt-get install -y mercurial \
26 26
27 && apt-get install -y vim \ 27 # && apt-get install -y vim \
28 28
29 && apt-get install -y nano \ 29 # && apt-get install -y nano \
30 30
31 && apt-get install -y tar \ 31 && apt-get install -y tar \
32 32
33 && apt-get install -y curl \ 33 && apt-get install -y curl \
34 34
68 COPY atlassian-bamboo-agent-installer-6.5.0.jar /root 68 COPY atlassian-bamboo-agent-installer-6.5.0.jar /root
69 69
70 RUN mkdir -p /root/bamboo-agent-home/bin 70 RUN mkdir -p /root/bamboo-agent-home/bin
71 COPY bamboo-capabilities.properties /root/bamboo-agent-home/bin/bamboo-capabilities.properties 71 COPY bamboo-capabilities.properties /root/bamboo-agent-home/bin/bamboo-capabilities.properties
72 72
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
74
75 RUN chmod +x /usr/local/bin/docker-compose
76
73 ENTRYPOINT ["docker-entrypoint.sh"] 77 ENTRYPOINT ["docker-entrypoint.sh"]
74 78
75 CMD java -jar /root/atlassian-bamboo-agent-installer-6.5.0.jar $BAMBOO_SERVER/agentServer/ 79 CMD java -jar /root/atlassian-bamboo-agent-installer-6.5.0.jar $BAMBOO_SERVER/agentServer/
76 #CMD [] 80 #CMD []
77 81