github.com/tiagovtristao/plz@v13.4.0+incompatible/tools/images/ubuntu_alt/Dockerfile (about) 1 FROM ubuntu:bionic 2 MAINTAINER peter.ebden@gmail.com 3 4 # Most dependencies; Python, Java, Clang and Ruby (only used for fpm) 5 RUN apt-get update && \ 6 apt-get install -y python3 python3-dev python3-pip openjdk-11-jdk-headless \ 7 curl unzip git locales pkg-config zlib1g-dev clang && \ 8 apt-get clean 9 10 # Go - we want 1.11 here but the latest package available is 1.10. 11 RUN curl -fsSL https://dl.google.com/go/go1.11.4.linux-amd64.tar.gz | tar -xzC /usr/local 12 RUN ln -s /usr/local/go/bin/go /usr/local/bin/go && ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt 13 14 # Locale 15 RUN locale-gen en_GB.UTF-8 16 17 # Welcome message 18 COPY /motd.txt /etc/motd 19 RUN echo 'cat /etc/motd' >> /etc/bash.bashrc 20 WORKDIR /tmp