throttled/Dockerfile

44 строки
1.2 KiB
Docker
Исходник Постоянная ссылка Обычный вид История

FROM rust:1.46-buster as sysstat
2020-08-18 20:25:09 +03:00
WORKDIR /sysstat
RUN git clone https://github.com/sysstat/sysstat /sysstat
RUN CFLAGS=-static ./configure && CFLAGS=-static make -j$(nproc)
RUN wc -c /sysstat/iostat | numfmt --to=iec-i
FROM rust:1.46-buster as build
2020-08-18 20:25:09 +03:00
# create dummy application for dependency caching
RUN USER=root cargo new --bin throttled
WORKDIR /throttled
2020-08-18 20:36:54 +03:00
COPY Cargo.lock Cargo.lock
COPY Cargo.toml Cargo.toml
2020-08-18 20:25:09 +03:00
RUN rustup toolchain install nightly
# download + compile dependencies for caching
RUN cargo +nightly build --release
RUN rm src/*.rs
RUN rm ./target/release/deps/throttled*
2020-08-18 20:25:09 +03:00
2020-08-18 20:36:54 +03:00
ADD src src
2020-08-18 20:25:09 +03:00
RUN cargo +nightly build --release
RUN wc -c target/release/throttled | numfmt --to=iec-i
# ------------------------------------------------------------------------------
# Final Stage
# ------------------------------------------------------------------------------
FROM amd64/busybox:uclibc as busybox
FROM gcr.io/distroless/cc:debug
COPY --from=busybox /bin/busybox /busybox/busybox
RUN ["/busybox/busybox", "--install", "/bin"]
# FROM gcr.io/distroless/cc:latest
COPY --from=build /throttled/target/release/throttled /usr/local/bin/throttled
2020-08-18 20:25:09 +03:00
COPY --from=sysstat /sysstat/iostat /sysstat/iostat
ENTRYPOINT ["/usr/local/bin/throttled"]