libreddit/Dockerfile

15 lines
467 B
Docker
Raw Normal View History

FROM rust:alpine as builder
2020-10-25 21:48:44 +01:00
WORKDIR /usr/src/libreddit
COPY . .
RUN apk add --no-cache g++
2020-10-25 21:48:44 +01:00
RUN cargo install --path .
FROM alpine:latest
RUN apk add --no-cache curl
COPY --from=builder /usr/local/cargo/bin/libreddit /usr/local/bin/libreddit
2021-04-01 21:09:08 +02:00
RUN adduser --system --home /nonexistent --no-create-home --disabled-password libreddit
USER libreddit
EXPOSE 8080
HEALTHCHECK --interval=5m --timeout=3s CMD curl -f http://localhost:8080/settings || exit 1
2021-04-01 21:09:08 +02:00
CMD ["libreddit"]