Mercurial > public > ssdt-docker
annotate bamboo-agent/Dockerfile @ 448:c8a3c4500d04
USASR-5154 added more keys
author | belknapSSDT <zach.belknap@mcoecn.org> |
---|---|
date | Wed, 27 Sep 2023 15:17:53 -0400 |
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 | |
18 #RUN set -ex | |
19 |