ADD file:481dd2da6de71525248eba186feeeafcc73cc956ade0a196a4e8b0c2424e74b9 in / |
CMD ["bash"] |
ENV DEBIAN_FRONTEND=noninteractive |
RUN /bin/sh -c apt-get -qq update # buildkit |
RUN /bin/sh -c apt-get -qq dist-upgrade -y # buildkit |
RUN /bin/sh -c apt-get -qq autoremove -y # buildkit |
RUN /bin/sh -c apt-get -qq install -y apt-utils # buildkit |
RUN /bin/sh -c apt-get -qq install -y ca-certificates tzdata # buildkit |
RUN /bin/sh -c apt-get -qq install -y curl wget # buildkit |
RUN /bin/sh -c apt-get -qq install -y software-properties-common # buildkit |
RUN /bin/sh -c apt-get -qq install -y apt-transport-https # buildkit |
RUN /bin/sh -c apt-get -qq install -y sudo # buildkit |
RUN /bin/sh -c apt-get -qq install -y git perl ruby pkg-config libidn11-dev libwww-perl libz-dev libaio-dev libncurses-dev libexpat-dev libpcre3-dev libperl-dev libpopt-dev libbz2-dev libtest-simple-perl libsocket6-perl libtest-inter-perl libtest-warn-perl libtest-deep-perl debhelper # buildkit |
RUN /bin/sh -c apt-get update && apt-get -qq install -y lib32z1-dev libz-dev build-essential zlib* # buildkit |
RUN /bin/sh -c apt-get -qq install -y openjdk-8-jdk ant ant-optional maven rsync # buildkit |
RUN /bin/sh -c apt-get install -y locales locales-all # buildkit |
RUN /bin/sh -c curl https://rclone.org/install.sh | sudo bash # buildkit |
ENV LC_ALL=en_US.UTF-8 |
ENV LANG=en_US.UTF-8 |
ENV LANGUAGE=en_US.UTF-8 |
RUN /bin/sh -c groupadd --gid 1000 build && useradd --uid 1000 --gid 1000 -m build && echo build ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/build && chmod 0440 /etc/sudoers.d/build && chown -R 1000:1000 /home/build # buildkit |
USER build |
WORKDIR /home/build |