2019-12-27 11:07:53 +00:00
|
|
|
# ===================================
|
|
|
|
# ===== Authelia CI image =====
|
|
|
|
# ===================================
|
2020-01-02 05:36:20 +00:00
|
|
|
FROM alpine:3.11.2
|
2019-12-27 11:07:53 +00:00
|
|
|
|
|
|
|
RUN apk --no-cache add ca-certificates tzdata
|
|
|
|
|
|
|
|
WORKDIR /usr/app
|
|
|
|
|
|
|
|
COPY /dist/authelia authelia
|
|
|
|
COPY /dist/public_html public_html
|
|
|
|
|
|
|
|
EXPOSE 9091
|
|
|
|
|
|
|
|
VOLUME /etc/authelia
|
|
|
|
VOLUME /var/lib/authelia
|
|
|
|
|
|
|
|
CMD ["./authelia", "--config", "/etc/authelia/configuration.yml"]
|