2016-09-12 10:45:04 +00:00
|
|
|
# Use Debian 16.04 as the base for our Rust musl toolchain, because of
|
|
|
|
# https://github.com/rust-lang/rust/issues/34978 (as of Rust 1.11).
|
|
|
|
FROM ubuntu:16.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
|
|
|
|
|
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.
|
|
|
|
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 \
|
|
|
|
pkgconf \
|
2016-04-17 11:41:55 +00:00
|
|
|
sudo \
|
|
|
|
xutils-dev \
|
2018-03-25 13:01:36 +00:00
|
|
|
gcc-4.7-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/* && \
|
2016-04-17 11:41:55 +00:00
|
|
|
useradd rust --user-group --create-home --shell /bin/bash --groups sudo
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2016-04-16 14:00:12 +00:00
|
|
|
# Build a static library version of OpenSSL using musl-libc. This is
|
|
|
|
# needed by the popular Rust `hyper` crate.
|
2017-09-26 13:26:46 +00:00
|
|
|
RUN echo "Building OpenSSL" && \
|
2018-02-23 10:00:01 +00:00
|
|
|
cd /tmp && \
|
|
|
|
OPENSSL_VERSION=1.0.2l && \
|
|
|
|
curl -LO "https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz" && \
|
|
|
|
tar xvzf "openssl-$OPENSSL_VERSION.tar.gz" && cd "openssl-$OPENSSL_VERSION" && \
|
2017-10-24 12:40:12 +00:00
|
|
|
env CC=musl-gcc ./Configure no-shared no-zlib -fPIC --prefix=/usr/local/musl linux-x86_64 && \
|
2016-04-17 11:41:55 +00:00
|
|
|
env C_INCLUDE_PATH=/usr/local/musl/include/ make depend && \
|
|
|
|
make && sudo make install && \
|
2018-02-23 10:00:01 +00:00
|
|
|
\
|
2017-09-26 13:26:46 +00:00
|
|
|
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 && \
|
2018-02-23 10:00:01 +00:00
|
|
|
\
|
2017-09-26 13:26:46 +00:00
|
|
|
echo "Building libpq" && \
|
2018-02-23 10:00:01 +00:00
|
|
|
cd /tmp && \
|
|
|
|
POSTGRESQL_VERSION=9.6.5 && \
|
|
|
|
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 \
|
|
|
|
PKG_CONFIG_ALL_STATIC=true
|
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.)
|
|
|
|
|
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
|