Dockerfile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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:22.04 as build
  7. RUN apt-get update -y && \
  8. DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
  9. g++ \
  10. curl \
  11. ca-certificates \
  12. libc6-dev \
  13. make \
  14. libssl-dev \
  15. pkg-config \
  16. git \
  17. cmake \
  18. zlib1g-dev
  19. RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
  20. --default-toolchain stable --profile minimal -y
  21. COPY . .
  22. RUN bash -c 'source $HOME/.cargo/env && cargo test --release --all'
  23. RUN bash -c 'source $HOME/.cargo/env && cargo build --release'
  24. ##################
  25. # Output image #
  26. ##################
  27. FROM ubuntu:22.04 AS binary
  28. RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
  29. ca-certificates
  30. RUN mkdir -p /opt/triagebot
  31. COPY --from=build /target/release/triagebot /usr/local/bin/
  32. COPY templates /opt/triagebot/templates
  33. WORKDIR /opt/triagebot
  34. ENV PORT=80
  35. CMD triagebot