This commit is contained in:
Alesh Lerch 2024-11-01 23:51:51 +00:00 committed by GitHub
commit 19e5fe617e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,10 +2,9 @@ FROM alpine:3.19
ARG TARGET
RUN apk add --no-cache curl
RUN apk add --no-cache wget
RUN curl -L https://github.com/redlib-org/redlib/releases/latest/download/redlib-${TARGET}.tar.gz | \
tar xz -C /usr/local/bin/
RUN wget -q -O /usr/local/bin/redlib https://github.com/redlib-org/redlib/releases/latest/download/redlib && chmod +x /usr/local/bin/redlib
RUN adduser --home /nonexistent --no-create-home --disabled-password redlib
USER redlib