mirror of https://github.com/authelia/authelia.git
33 lines
749 B
Docker
33 lines
749 B
Docker
# ===================================
|
|
# ===== Authelia official image =====
|
|
# ===================================
|
|
FROM alpine:3.21.0@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
|
|
WORKDIR /app
|
|
|
|
# Set environment variables
|
|
ENV PATH="/app:${PATH}" \
|
|
PUID=0 \
|
|
PGID=0 \
|
|
X_AUTHELIA_CONFIG="/config/configuration.yml"
|
|
|
|
RUN \
|
|
apk --no-cache add ca-certificates su-exec tzdata wget
|
|
|
|
COPY LICENSE .healthcheck.env entrypoint.sh healthcheck.sh ./
|
|
|
|
RUN \
|
|
chmod 0666 /app/.healthcheck.env
|
|
|
|
COPY authelia-${TARGETOS}-${TARGETARCH}-musl ./authelia
|
|
|
|
EXPOSE 9091
|
|
|
|
VOLUME /config
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=1m CMD /app/healthcheck.sh
|