2019-04-18 13:44:12 +00:00
|
|
|
# Use Ubuntu 18.04 LTS as our base image.
|
|
|
|
FROM ubuntu:18.04
|
2016-04-16 14:00:12 +00:00
|
|
|
|
2016-11-25 12:45:10 +00:00
|
|
|
# The Rust toolchain to use when building our image. Set by `hooks/build`.
|
|
|
|
ARG TOOLCHAIN=stable
|
|
|
|
|
2019-04-27 12:51:12 +00:00
|
|
|
# The OpenSSL version to use. We parameterize this because many Rust
|
|
|
|
# projects will fail to build with 1.1.
|
|
|
|
ARG OPENSSL_VERSION=1.0.2r
|
|
|
|
|
2016-04-17 11:41:55 +00:00
|
|
|
# Make sure we have basic dev tools for building C libraries. Our goal
|
|
|
|
# here is to support the musl-libc builds and Cargo builds needed for a
|
|
|
|
# large selection of the most popular crates.
|
2016-04-16 14:00:12 +00:00
|
|
|
#
|
|
|
|
# We also set up a `rust` user by default, in whose account we'll install
|
|
|
|
# the Rust toolchain. This user has sudo privileges if you need to install
|
|
|
|
# any more software.
|
2018-04-25 10:52:32 +00:00
|
|
|
#
|
|
|
|
# `mdbook` is the standard Rust tool for making searchable HTML manuals.
|
2016-04-16 14:00:12 +00:00
|
|
|
RUN apt-get update && \
|
2016-04-17 11:41:55 +00:00
|
|
|
apt-get install -y \
|
|
|
|
build-essential \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
file \
|
|
|
|
git \
|
2017-10-24 12:40:12 +00:00
|
|
|
musl-dev \
|
2016-11-19 13:50:23 +00:00
|
|
|
musl-tools \
|
2017-10-24 12:40:12 +00:00
|
|
|
libpq-dev \
|
2017-12-16 21:11:06 +00:00
|
|
|
libsqlite-dev \
|
2017-10-24 12:40:12 +00:00
|
|
|
libssl-dev \
|
2019-04-28 01:32:09 +00:00
|
|
|
linux-libc-dev \
|
2017-10-24 12:40:12 +00:00
|
|
|
pkgconf \
|
2016-04-17 11:41:55 +00:00
|
|
|
sudo \
|
|
|
|
xutils-dev \
|
2019-04-18 13:44:12 +00:00
|
|
|
gcc-multilib-arm-linux-gnueabihf \
|
2016-04-17 11:41:55 +00:00
|
|
|
&& \
|
2016-04-16 14:00:12 +00:00
|
|
|
apt-get clean && rm -rf /var/lib/apt/lists/* && \
|
2018-04-25 10:52:32 +00:00
|
|
|
useradd rust --user-group --create-home --shell /bin/bash --groups sudo && \
|
2019-04-18 13:44:12 +00:00
|
|
|
MDBOOK_VERSION=0.2.1 && \
|
2018-04-25 10:52:32 +00:00
|
|
|
curl -LO https://github.com/rust-lang-nursery/mdBook/releases/download/v$MDBOOK_VERSION/mdbook-v$MDBOOK_VERSION-x86_64-unknown-linux-musl.tar.gz && \
|
|
|
|
tar xf mdbook-v$MDBOOK_VERSION-x86_64-unknown-linux-musl.tar.gz && \
|
|
|
|
mv mdbook /usr/local/bin/ && \
|
|
|
|
rm -f mdbook-v$MDBOOK_VERSION-x86_64-unknown-linux-musl.tar.gz
|
2016-04-17 11:41:55 +00:00
|
|
|
|
2018-10-13 19:03:53 +00:00
|
|
|
# Static linking for C++ code
|
|
|
|
RUN sudo ln -s "/usr/bin/g++" "/usr/bin/musl-g++"
|
|
|
|
|
2016-04-17 11:41:55 +00:00
|
|
|
# Allow sudo without a password.
|
|
|
|
ADD sudoers /etc/sudoers.d/nopasswd
|
|
|
|
|
|
|
|
# Run all further code as user `rust`, and create our working directories
|
|
|
|
# as the appropriate user.
|
|
|
|
USER rust
|
|
|
|
RUN mkdir -p /home/rust/libs /home/rust/src
|
2016-04-16 14:00:12 +00:00
|
|
|
|
2016-04-17 11:41:55 +00:00
|
|
|
# Set up our path with all our binary directories, including those for the
|
|
|
|
# musl-gcc toolchain and for our Rust toolchain.
|
2017-08-21 05:26:42 +00:00
|
|
|
ENV PATH=/home/rust/.cargo/bin:/usr/local/musl/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
2016-04-16 14:00:12 +00:00
|
|
|
|
2016-04-17 11:41:55 +00:00
|
|
|
# Install our Rust toolchain and the `musl` target. We patch the
|
|
|
|
# command-line we pass to the installer so that it won't attempt to
|
|
|
|
# interact with the user or fool around with TTYs. We also set the default
|
|
|
|
# `--target` to musl so that our users don't need to keep overriding it
|
|
|
|
# manually.
|
2016-11-25 12:52:24 +00:00
|
|
|
RUN curl https://sh.rustup.rs -sSf | \
|
2016-11-25 12:56:34 +00:00
|
|
|
sh -s -- -y --default-toolchain $TOOLCHAIN && \
|
2018-03-25 12:03:53 +00:00
|
|
|
rustup target add x86_64-unknown-linux-musl && \
|
2018-03-26 06:51:37 +00:00
|
|
|
rustup target add armv7-unknown-linux-musleabihf
|
2016-04-17 11:41:55 +00:00
|
|
|
ADD cargo-config.toml /home/rust/.cargo/config
|
|
|
|
|
2018-02-28 11:59:21 +00:00
|
|
|
# Set up a `git credentials` helper for using GH_USER and GH_TOKEN to access
|
|
|
|
# private repositories if desired.
|
|
|
|
ADD git-credential-ghtoken /usr/local/bin
|
|
|
|
RUN git config --global credential.https://github.com.helper ghtoken
|
|
|
|
|
2019-04-28 01:32:09 +00:00
|
|
|
# Build a static library version of OpenSSL using musl-libc. This is needed by
|
|
|
|
# the popular Rust `hyper` crate.
|
|
|
|
#
|
|
|
|
# We point /usr/local/musl/include/linux at some Linux kernel headers (not
|
|
|
|
# necessarily the right ones) in an effort to compile OpenSSL 1.1's "engine"
|
|
|
|
# component. It's possible that this will cause bizarre and terrible things to
|
|
|
|
# happen. There may be "sanitized" header
|
2017-09-26 13:26:46 +00:00
|
|
|
RUN echo "Building OpenSSL" && \
|
2019-04-28 01:32:09 +00:00
|
|
|
ls /usr/include/linux && \
|
|
|
|
sudo mkdir -p /usr/local/musl/include && \
|
|
|
|
sudo ln -s /usr/include/linux /usr/local/musl/include/linux && \
|
|
|
|
sudo ln -s /usr/include/x86_64-linux-gnu/asm /usr/local/musl/include/asm && \
|
|
|
|
sudo ln -s /usr/include/asm-generic /usr/local/musl/include/asm-generic && \
|
2018-02-23 10:00:01 +00:00
|
|
|
cd /tmp && \
|
|
|
|
curl -LO "https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz" && \
|
|
|
|
tar xvzf "openssl-$OPENSSL_VERSION.tar.gz" && cd "openssl-$OPENSSL_VERSION" && \
|
2019-04-27 21:53:16 +00:00
|
|
|
env CC=musl-gcc ./Configure no-shared no-zlib -fPIC --prefix=/usr/local/musl -DOPENSSL_NO_SECURE_MEMORY linux-x86_64 && \
|
2016-04-17 11:41:55 +00:00
|
|
|
env C_INCLUDE_PATH=/usr/local/musl/include/ make depend && \
|
2019-04-28 01:32:09 +00:00
|
|
|
env C_INCLUDE_PATH=/usr/local/musl/include/ make && \
|
|
|
|
sudo make install && \
|
|
|
|
sudo rm /usr/local/musl/include/linux /usr/local/musl/include/asm /usr/local/musl/include/asm-generic && \
|
2019-04-18 13:44:12 +00:00
|
|
|
rm -r /tmp/*
|
|
|
|
|
|
|
|
RUN echo "Building zlib" && \
|
2018-02-23 10:00:01 +00:00
|
|
|
cd /tmp && \
|
|
|
|
ZLIB_VERSION=1.2.11 && \
|
|
|
|
curl -LO "http://zlib.net/zlib-$ZLIB_VERSION.tar.gz" && \
|
|
|
|
tar xzf "zlib-$ZLIB_VERSION.tar.gz" && cd "zlib-$ZLIB_VERSION" && \
|
2017-09-26 13:26:46 +00:00
|
|
|
CC=musl-gcc ./configure --static --prefix=/usr/local/musl && \
|
|
|
|
make && sudo make install && \
|
2019-04-18 13:44:12 +00:00
|
|
|
rm -r /tmp/*
|
|
|
|
|
|
|
|
RUN echo "Building libpq" && \
|
2018-02-23 10:00:01 +00:00
|
|
|
cd /tmp && \
|
2019-04-18 13:44:12 +00:00
|
|
|
POSTGRESQL_VERSION=11.2 && \
|
2018-02-23 10:00:01 +00:00
|
|
|
curl -LO "https://ftp.postgresql.org/pub/source/v$POSTGRESQL_VERSION/postgresql-$POSTGRESQL_VERSION.tar.gz" && \
|
|
|
|
tar xzf "postgresql-$POSTGRESQL_VERSION.tar.gz" && cd "postgresql-$POSTGRESQL_VERSION" && \
|
2017-09-26 13:26:46 +00:00
|
|
|
CC=musl-gcc CPPFLAGS=-I/usr/local/musl/include LDFLAGS=-L/usr/local/musl/lib ./configure --with-openssl --without-readline --prefix=/usr/local/musl && \
|
2018-02-23 10:00:01 +00:00
|
|
|
cd src/interfaces/libpq && make all-static-lib && sudo make install-lib-static && \
|
|
|
|
cd ../../bin/pg_config && make && sudo make install && \
|
|
|
|
rm -r /tmp/*
|
2017-09-26 13:26:46 +00:00
|
|
|
|
2016-11-19 13:50:55 +00:00
|
|
|
ENV OPENSSL_DIR=/usr/local/musl/ \
|
|
|
|
OPENSSL_INCLUDE_DIR=/usr/local/musl/include/ \
|
2016-05-18 22:05:15 +00:00
|
|
|
DEP_OPENSSL_INCLUDE=/usr/local/musl/include/ \
|
2016-04-16 14:00:12 +00:00
|
|
|
OPENSSL_LIB_DIR=/usr/local/musl/lib/ \
|
2017-09-26 13:26:46 +00:00
|
|
|
OPENSSL_STATIC=1 \
|
2017-10-24 12:40:12 +00:00
|
|
|
PQ_LIB_STATIC_X86_64_UNKNOWN_LINUX_MUSL=1 \
|
|
|
|
PG_CONFIG_X86_64_UNKNOWN_LINUX_GNU=/usr/bin/pg_config \
|
|
|
|
PKG_CONFIG_ALLOW_CROSS=true \
|
2018-03-19 18:43:43 +00:00
|
|
|
PKG_CONFIG_ALL_STATIC=true \
|
|
|
|
LIBZ_SYS_STATIC=1 \
|
|
|
|
TARGET=musl
|
2016-04-16 14:00:12 +00:00
|
|
|
|
|
|
|
# (Please feel free to submit pull requests for musl-libc builds of other C
|
|
|
|
# libraries needed by the most popular and common Rust crates, to avoid
|
|
|
|
# everybody needing to build them manually.)
|
|
|
|
|
2018-07-25 11:08:58 +00:00
|
|
|
# Install some useful Rust tools from source. This will use the static linking
|
|
|
|
# toolchain, but that should be OK.
|
2018-09-17 11:04:29 +00:00
|
|
|
RUN cargo install -f cargo-audit && \
|
|
|
|
rm -rf /home/rust/.cargo/registry/
|
2018-07-25 11:08:58 +00:00
|
|
|
|
2016-04-17 11:41:55 +00:00
|
|
|
# Expect our source code to live in /home/rust/src. We'll run the build as
|
2016-04-16 14:00:12 +00:00
|
|
|
# user `rust`, which will be uid 1000, gid 1000 outside the container.
|
|
|
|
WORKDIR /home/rust/src
|