Dockerfile 655 B

1234567891011121314151617181920212223242526272829
  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 rust:1.57 AS build
  7. COPY . .
  8. RUN cargo test --release --all
  9. RUN cargo build --release
  10. ##################
  11. # Output image #
  12. ##################
  13. FROM ubuntu:bionic AS binary
  14. RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
  15. ca-certificates
  16. RUN mkdir -p /opt/triagebot
  17. COPY --from=build /target/release/triagebot /usr/local/bin/
  18. COPY templates /opt/triagebot/templates
  19. WORKDIR /opt/triagebot
  20. ENV PORT=80
  21. CMD triagebot