Update the modified docker image build to use the local docker-lib.sh file rather than grabbing it from the concourse github. See gh-15158
11 lines
245 B
Docker
11 lines
245 B
Docker
FROM ubuntu:bionic-20181018
|
|
|
|
ADD setup.sh /setup.sh
|
|
RUN ./setup.sh java8
|
|
|
|
ENV JAVA_HOME /opt/openjdk
|
|
ENV PATH $JAVA_HOME/bin:$PATH
|
|
ADD docker-lib.sh /docker-lib.sh
|
|
|
|
ENTRYPOINT [ "switch", "shell=/bin/bash", "--", "codep", "/bin/docker daemon" ]
|