21 lines
514 B
Docker
21 lines
514 B
Docker
FROM alpine:3.19
|
|
|
|
ARG TARGET
|
|
|
|
RUN apk add --no-cache curl
|
|
|
|
RUN curl -L https://github.com/redlib-org/redlib/releases/latest/download/redlib-${TARGET}.tar.gz | \
|
|
tar xz -C /usr/local/bin/
|
|
|
|
RUN adduser --home /nonexistent --no-create-home --disabled-password redlib
|
|
USER redlib
|
|
|
|
# Tell Docker to expose port 8080
|
|
EXPOSE 8080
|
|
|
|
# Run a healthcheck every minute to make sure redlib is functional
|
|
HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider --q http://localhost:8080/settings || exit 1
|
|
|
|
CMD ["redlib"]
|
|
|