2019-11-02 01:31:51 +07:00
|
|
|
# ===================================
|
|
|
|
# ===== Authelia official image =====
|
|
|
|
# ===================================
|
2022-04-05 08:15:43 +07:00
|
|
|
FROM alpine:3.15.4
|
2019-11-02 01:31:51 +07:00
|
|
|
|
2021-09-16 19:39:18 +07:00
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
2020-10-19 07:24:24 +07:00
|
|
|
WORKDIR /app
|
2019-11-02 01:31:51 +07:00
|
|
|
|
2021-09-16 19:39:18 +07:00
|
|
|
# Set environment variables
|
|
|
|
ENV PATH="/app:${PATH}" \
|
|
|
|
PUID=0 \
|
|
|
|
PGID=0
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
apk --no-cache add ca-certificates su-exec tzdata
|
|
|
|
|
|
|
|
COPY LICENSE .healthcheck.env entrypoint.sh healthcheck.sh ./
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
chmod 0666 /app/.healthcheck.env
|
2016-12-10 07:47:58 +07:00
|
|
|
|
2021-09-26 09:08:47 +07:00
|
|
|
COPY authelia-${TARGETOS}-${TARGETARCH}-musl ./authelia
|
2016-12-18 01:36:41 +07:00
|
|
|
|
2019-01-30 22:47:03 +07:00
|
|
|
EXPOSE 9091
|
2017-01-13 05:27:53 +07:00
|
|
|
|
2020-06-17 13:25:35 +07:00
|
|
|
VOLUME /config
|
2017-01-22 02:24:35 +07:00
|
|
|
|
2021-06-06 11:46:31 +07:00
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|
2020-10-19 06:12:21 +07:00
|
|
|
CMD ["--config", "/config/configuration.yml"]
|
2021-06-06 11:46:31 +07:00
|
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=1m CMD /app/healthcheck.sh
|