libreddit/Dockerfile.arm64

34 lines
1.0 KiB
Docker
Raw Normal View History

2021-04-10 00:50:43 +02:00
####################################################################################################
## Builder
####################################################################################################
2021-04-10 03:59:04 +02:00
FROM rust:alpine AS builder
2021-04-10 00:50:43 +02:00
2021-04-10 03:59:04 +02:00
RUN apk add --no-cache g++
2021-04-10 00:50:43 +02:00
WORKDIR /usr/src/libreddit
COPY . .
2021-04-10 03:59:04 +02:00
RUN cargo install --path .
2021-04-10 00:50:43 +02:00
####################################################################################################
## Final image
####################################################################################################
2021-04-10 03:59:04 +02:00
FROM alpine:latest
2021-04-10 00:50:43 +02:00
2021-04-10 03:59:04 +02:00
RUN apk add --no-cache curl
2021-04-10 00:50:43 +02:00
# Copy our build
2021-04-10 03:59:04 +02:00
COPY --from=builder /usr/local/cargo/bin/libreddit /usr/local/bin/libreddit
2021-04-10 00:50:43 +02:00
# Use an unprivileged user.
2021-04-10 03:59:04 +02:00
RUN adduser --home /nonexistent --no-create-home --disabled-password libreddit
2021-04-10 00:50:43 +02:00
USER libreddit
# Tell Docker to expose port 8080
EXPOSE 8080
# Run a healthcheck every minute to make sure Libreddit is functional
HEALTHCHECK --interval=1m --timeout=3s CMD curl -f http://localhost:8080/settings || exit 1
CMD ["libreddit"]