123456789101112131415 |
- FROM ubuntu:bionic-20200112
- ARG go_pkg_url
- RUN apt-get update && apt-get upgrade -y && apt-get -y install build-essential curl ca-certificates devscripts dh-systemd cmake
- RUN curl -s -k $go_pkg_url -o go.tar.gz && \
- tar -C /usr/local -xzf go.tar.gz && \
- rm go.tar.gz
- RUN groupadd -g 1000 jenkins-build && useradd -u 1000 -g 1000 jenkins-build
- RUN chmod 777 /home
- CMD ["/usr/bin/sshd", "-D"]
|