moviequotebot-api/Dockerfile

11 lines
405 B
Docker
Raw Permalink Normal View History

FROM rust:1.52 as builder
WORKDIR /usr/src/moviequotebot_api
COPY . .
RUN cargo install --path .
FROM debian:buster-slim
RUN apt-get update && apt-get install -y libpq-dev curl && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/cargo/bin/moviequotebot_api /usr/local/bin/moviequotebot_api
EXPOSE 8080
HEALTHCHECK CMD curl --fail http://localhost:8080/health || exit 1
CMD ["moviequotebot_api"]