libreddit/Dockerfile.arm

37 lines
1.2 KiB
Docker
Raw Normal View History

2021-04-10 00:50:43 +02:00
####################################################################################################
## Builder
####################################################################################################
2021-04-18 06:32:48 +02:00
FROM rust:alpine AS builder
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-18 06:32:48 +02:00
FROM alpine:latest
2021-04-10 00:50:43 +02:00
2021-04-15 06:50:03 +02:00
# Import ca-certificates from builder
COPY --from=builder /usr/share/ca-certificates /usr/share/ca-certificates
COPY --from=builder /etc/ssl/certs /etc/ssl/certs
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
2021-04-10 07:38:13 +02:00
HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider --q http://localhost:8080/settings || exit 1
2021-04-10 00:50:43 +02:00
2021-04-15 06:50:03 +02:00
CMD ["libreddit"]