2020-12-12 01:53:20 +00:00
|
|
|
# https://whitfin.io/speeding-up-rust-docker-builds/
|
|
|
|
# TODO: https://stackoverflow.com/questions/57389547/how-to-define-the-context-for-a-docker-build-as-a-specific-commit-on-one-of-the
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2021-02-20 19:12:38 +00:00
|
|
|
# rust:1.50-slim-buster
|
|
|
|
FROM rust@sha256:5dd85eb0c60bbdea14a6ecba1f6fe4a0f5c878bcf06d2cdfae0aff3a19ed4b10 as build
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-12 01:53:20 +00:00
|
|
|
WORKDIR /
|
|
|
|
ENV USER root
|
|
|
|
|
|
|
|
# create empty shell projects
|
|
|
|
RUN cargo new --bin ptth
|
|
|
|
|
|
|
|
WORKDIR /ptth
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-12 01:53:20 +00:00
|
|
|
RUN \
|
|
|
|
cargo new --lib crates/always_equal && \
|
|
|
|
cargo new --lib crates/ptth_core && \
|
|
|
|
cargo new --bin crates/ptth_relay && \
|
2020-12-21 16:46:02 +00:00
|
|
|
cargo new --bin crates/ptth_server && \
|
|
|
|
cargo new --bin crates/ptth_file_server_bin && \
|
2021-03-06 19:44:07 +00:00
|
|
|
cargo new --bin tools/ptth_tail && \
|
2021-07-27 03:19:43 +00:00
|
|
|
cargo new --bin crates/debug_proxy && \
|
|
|
|
cargo new --bin prototypes/quic_demo
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-12 01:53:20 +00:00
|
|
|
# copy over your manifests
|
2020-12-21 16:46:02 +00:00
|
|
|
COPY ./Cargo.lock ./
|
|
|
|
COPY ./Cargo.toml ./
|
|
|
|
COPY ./crates/always_equal/Cargo.toml ./crates/always_equal/
|
|
|
|
COPY ./crates/ptth_core/Cargo.toml ./crates/ptth_core/
|
|
|
|
COPY ./crates/ptth_relay/Cargo.toml ./crates/ptth_relay/
|
2021-07-27 03:19:43 +00:00
|
|
|
COPY ./prototypes/quic_demo/Cargo.toml ./prototypes/quic_demo/
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-12 01:53:20 +00:00
|
|
|
# this build step will cache your dependencies
|
|
|
|
RUN cargo build --release -p ptth_relay
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-12 01:53:20 +00:00
|
|
|
RUN \
|
|
|
|
rm \
|
|
|
|
src/*.rs \
|
|
|
|
crates/always_equal/src/*.rs \
|
|
|
|
crates/ptth_core/src/*.rs \
|
2021-07-27 03:19:43 +00:00
|
|
|
crates/ptth_relay/src/*.rs \
|
|
|
|
prototypes/quic_demo/src/*.rs
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-12 01:53:20 +00:00
|
|
|
# Copy source tree
|
|
|
|
# Yes, I tried a few variations on the syntax. Dockerfiles are just rough.
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-21 16:46:02 +00:00
|
|
|
COPY ./src/ ./src
|
|
|
|
COPY ./crates/always_equal ./crates/always_equal
|
|
|
|
COPY ./crates/ptth_core ./crates/ptth_core
|
|
|
|
COPY ./crates/ptth_relay ./crates/ptth_relay
|
|
|
|
COPY ./handlebars/ ./handlebars
|
2021-07-27 03:19:43 +00:00
|
|
|
COPY ./prototypes/quic_demo ./prototypes/quic_demo
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-12 01:53:20 +00:00
|
|
|
# Bug in cargo's incremental build logic, triggered by
|
|
|
|
# Docker doing something funny with mtimes? Maybe?
|
|
|
|
RUN touch crates/ptth_core/src/lib.rs
|
|
|
|
|
|
|
|
# build for release
|
|
|
|
# gate only on ptth_relay tests for now
|
|
|
|
RUN \
|
|
|
|
cargo build --release -p ptth_relay && \
|
|
|
|
cargo test --release -p ptth_relay
|
|
|
|
|
2020-12-12 05:18:29 +00:00
|
|
|
# debian:buster-slim
|
2021-02-20 17:49:02 +00:00
|
|
|
FROM debian@sha256:13f0764262a064b2dd9f8a828bbaab29bdb1a1a0ac6adc8610a0a5f37e514955
|
2020-11-02 18:02:01 +00:00
|
|
|
|
|
|
|
RUN apt-get update \
|
2020-12-13 02:05:22 +00:00
|
|
|
&& apt-get upgrade -y \
|
2020-12-13 02:25:18 +00:00
|
|
|
&& apt-get install -y libssl1.1 ca-certificates tini
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2021-02-20 17:49:02 +00:00
|
|
|
RUN addgroup --gid 10001 ptth_user && adduser --system --uid 10000 --gid 10001 ptth_user
|
2020-12-13 02:25:18 +00:00
|
|
|
|
2021-02-20 17:49:02 +00:00
|
|
|
USER ptth_user
|
|
|
|
WORKDIR /home/ptth_user
|
2020-12-13 02:25:18 +00:00
|
|
|
|
|
|
|
COPY --from=build /ptth/target/release/ptth_relay ./
|
2021-02-20 17:49:02 +00:00
|
|
|
COPY --from=build /ptth/handlebars/relay ./handlebars/relay
|
2020-11-02 18:02:01 +00:00
|
|
|
|
2020-12-13 02:05:22 +00:00
|
|
|
ARG git_version
|
2020-12-13 02:25:18 +00:00
|
|
|
RUN echo -n "$git_version" > ./git_version.txt
|
2020-12-13 02:05:22 +00:00
|
|
|
|
2021-02-20 17:49:02 +00:00
|
|
|
CMD ["/usr/bin/tini", "--", "./ptth_relay"]
|