Dockerfile 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # This Dockerfile is composed of two steps: the first one builds the release
  2. # binary, and then the binary is copied inside another, empty image.
  3. #################
  4. # Build image #
  5. #################
  6. FROM ubuntu:bionic AS build
  7. RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
  8. ca-certificates \
  9. curl \
  10. build-essential \
  11. pkg-config \
  12. libssl-dev
  13. # Install the currently pinned toolchain with rustup
  14. COPY rust-toolchain /tmp/rust-toolchain
  15. RUN curl https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init >/tmp/rustup-init && \
  16. chmod +x /tmp/rustup-init && \
  17. /tmp/rustup-init -y --no-modify-path --default-toolchain $(cat /tmp/rust-toolchain)
  18. ENV PATH=/root/.cargo/bin:$PATH
  19. # Build the dependencies in a separate step to avoid rebuilding all of them
  20. # every time the source code changes. This takes advantage of Docker's layer
  21. # caching, and it works by copying the Cargo.{toml,lock} with dummy source code
  22. # and doing a full build with it.
  23. WORKDIR /tmp/source
  24. COPY Cargo.lock Cargo.toml /tmp/source/
  25. COPY parser/Cargo.toml /tmp/source/parser/Cargo.toml
  26. RUN mkdir -p /tmp/source/src /tmp/source/parser/src && \
  27. echo "fn main() {}" > /tmp/source/src/main.rs && \
  28. touch /tmp/source/parser/src/lib.rs
  29. RUN cargo fetch
  30. RUN cargo build --release
  31. # Dependencies are now cached, copy the actual source code and do another full
  32. # build. The touch on all the .rs files is needed, otherwise cargo assumes the
  33. # source code didn't change thanks to mtime weirdness.
  34. RUN rm -rf /tmp/source/src /tmp/source/parser/src
  35. COPY src /tmp/source/src
  36. COPY parser/src /tmp/source/parser/src
  37. RUN find -name "*.rs" -exec touch {} \; && cargo build --release
  38. ##################
  39. # Output image #
  40. ##################
  41. FROM ubuntu:bionic AS binary
  42. RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
  43. ca-certificates
  44. COPY --from=build /tmp/source/target/release/triagebot /usr/local/bin/
  45. CMD ["triagebot"]