2021-03-31 13:05:22 -07:00
|
|
|
FROM rust:alpine as builder
|
2020-10-25 13:48:44 -07:00
|
|
|
WORKDIR /usr/src/libreddit
|
|
|
|
COPY . .
|
2021-03-31 13:05:22 -07:00
|
|
|
RUN apk add --no-cache g++
|
2020-10-25 13:48:44 -07:00
|
|
|
RUN cargo install --path .
|
|
|
|
|
2021-03-31 13:05:22 -07:00
|
|
|
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache curl
|
2021-02-24 20:17:36 +01:00
|
|
|
COPY --from=builder /usr/local/cargo/bin/libreddit /usr/local/bin/libreddit
|
|
|
|
EXPOSE 8080
|
2021-03-31 13:05:22 -07:00
|
|
|
HEALTHCHECK --interval=5m --timeout=3s CMD curl -f http://localhost:8080/settings || exit 1
|
|
|
|
CMD ["libreddit"]
|