Mercurial > public > ssdt-docker
annotate bamboo-agent/Dockerfile @ 350:5ed8e2ba0d91 release/2.8.1
flow: Closed <release> '2.8.1'.
author | aldrich@ssdt-ohio.org |
---|---|
date | Wed, 20 May 2020 15:58:46 +0100 |
parents | 83f30dc7e9fb |
children |
rev | line source |
---|---|
249 | 1 FROM ubuntu:16.04 |
2 | |
3 RUN apt-get update | |
4 RUN apt-get install -y ca-certificates | |
5 | |
316
83f30dc7e9fb
adjusting docker script to test notifications
aldrich@ssdt-ohio.org
parents:
315
diff
changeset
|
6 ####NOTE we are no longer using the docker-bamboo agent images due to migration to mutli-agent servers. |
83f30dc7e9fb
adjusting docker script to test notifications
aldrich@ssdt-ohio.org
parents:
315
diff
changeset
|
7 |
249 | 8 # set up nsswitch.conf for Go's "netgo" implementation (which Docker explicitly uses) |
9 # - https://github.com/docker/docker-ce/blob/v17.09.0-ce/components/engine/hack/make.sh#L149 | |
10 # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 | |
11 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf | |
12 RUN echo 'hosts: files dns' > /etc/nsswitch.conf | |
13 | |
14 ENV DOCKER_CHANNEL stable | |
15 ENV DOCKER_VERSION 17.03.2-ce | |
16 ENV PATH "$PATH:/usr/local/bin" | |
17 ENV DOCKER_HOST unix:///var/run/docker.sock | |
3799d9706864
adding bamboo agent configuration files
aldrich@nwoca.org |