mirror of
https://github.com/stakater/Reloader.git
synced 2026-03-01 00:40:18 +00:00
12 lines
205 B
Docker
12 lines
205 B
Docker
FROM alpine:3.11
|
|
LABEL maintainer "Stakater Team"
|
|
|
|
RUN apk add --update --no-cache ca-certificates
|
|
|
|
COPY Reloader /bin/Reloader
|
|
|
|
# On alpine 'nobody' has uid 65534
|
|
USER 65534
|
|
|
|
ENTRYPOINT ["/bin/Reloader"]
|