2021-05-02 22:49:16 +00:00
|
|
|
# Stage 1: Lock python dependencies
|
2021-10-06 07:55:44 +00:00
|
|
|
FROM docker.io/python:3.9-slim-buster as locker
|
2019-12-30 09:34:31 +00:00
|
|
|
|
|
|
|
COPY ./Pipfile /app/
|
|
|
|
COPY ./Pipfile.lock /app/
|
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
|
|
|
RUN pip install pipenv && \
|
|
|
|
pipenv lock -r > requirements.txt && \
|
2021-06-09 12:22:45 +00:00
|
|
|
pipenv lock -r --dev-only > requirements-dev.txt
|
2019-12-30 09:34:31 +00:00
|
|
|
|
2021-07-13 09:06:51 +00:00
|
|
|
# Stage 2: Build website
|
2021-09-29 07:52:07 +00:00
|
|
|
FROM docker.io/node as website-builder
|
2021-07-13 09:06:51 +00:00
|
|
|
|
|
|
|
COPY ./website /static/
|
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
RUN cd /static && npm i && npm run build-docs-only
|
|
|
|
|
2021-09-10 16:18:11 +00:00
|
|
|
# Stage 3: Build webui
|
2021-09-29 07:52:07 +00:00
|
|
|
FROM docker.io/node as web-builder
|
2021-05-02 22:49:16 +00:00
|
|
|
|
|
|
|
COPY ./web /static/
|
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
2021-06-09 13:27:06 +00:00
|
|
|
RUN cd /static && npm i && npm run build
|
2021-05-02 22:49:16 +00:00
|
|
|
|
2021-09-10 16:18:11 +00:00
|
|
|
# Stage 4: Build go proxy
|
2021-09-29 07:52:07 +00:00
|
|
|
FROM docker.io/golang:1.17.1 AS builder
|
2021-05-02 22:49:16 +00:00
|
|
|
|
|
|
|
WORKDIR /work
|
|
|
|
|
2021-07-13 09:06:51 +00:00
|
|
|
COPY --from=web-builder /static/robots.txt /work/web/robots.txt
|
|
|
|
COPY --from=web-builder /static/security.txt /work/web/security.txt
|
|
|
|
COPY --from=web-builder /static/dist/ /work/web/dist/
|
|
|
|
COPY --from=web-builder /static/authentik/ /work/web/authentik/
|
2021-07-13 17:09:16 +00:00
|
|
|
COPY --from=website-builder /static/help/ /work/website/help/
|
2021-05-02 22:49:16 +00:00
|
|
|
|
|
|
|
COPY ./cmd /work/cmd
|
|
|
|
COPY ./web/static.go /work/web/static.go
|
2021-07-13 16:24:18 +00:00
|
|
|
COPY ./website/static.go /work/website/static.go
|
2021-05-02 22:49:16 +00:00
|
|
|
COPY ./internal /work/internal
|
|
|
|
COPY ./go.mod /work/go.mod
|
|
|
|
COPY ./go.sum /work/go.sum
|
|
|
|
|
|
|
|
RUN go build -o /work/authentik ./cmd/server/main.go
|
|
|
|
|
2021-09-10 16:18:11 +00:00
|
|
|
# Stage 5: Run
|
2021-10-06 07:55:44 +00:00
|
|
|
FROM docker.io/python:3.9-slim-buster
|
2019-12-30 09:34:31 +00:00
|
|
|
|
2020-09-09 22:14:59 +00:00
|
|
|
WORKDIR /
|
|
|
|
COPY --from=locker /app/requirements.txt /
|
|
|
|
COPY --from=locker /app/requirements-dev.txt /
|
2019-12-30 09:34:31 +00:00
|
|
|
|
2021-03-16 13:42:01 +00:00
|
|
|
ARG GIT_BUILD_HASH
|
|
|
|
ENV GIT_BUILD_HASH=$GIT_BUILD_HASH
|
|
|
|
|
2019-12-30 09:34:31 +00:00
|
|
|
RUN apt-get update && \
|
2021-05-13 18:11:49 +00:00
|
|
|
apt-get install -y --no-install-recommends curl ca-certificates gnupg git runit && \
|
2020-10-03 18:36:36 +00:00
|
|
|
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
|
|
|
|
echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \
|
|
|
|
apt-get update && \
|
2021-05-10 21:24:27 +00:00
|
|
|
apt-get install -y --no-install-recommends libpq-dev postgresql-client build-essential libxmlsec1-dev pkg-config libmaxminddb0 && \
|
2020-09-27 19:07:29 +00:00
|
|
|
pip install -r /requirements.txt --no-cache-dir && \
|
2021-05-11 23:20:31 +00:00
|
|
|
apt-get remove --purge -y build-essential git && \
|
2020-09-27 19:07:29 +00:00
|
|
|
apt-get autoremove --purge -y && \
|
2021-05-09 22:38:58 +00:00
|
|
|
apt-get clean && \
|
|
|
|
rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/ && \
|
2020-12-05 21:08:42 +00:00
|
|
|
adduser --system --no-create-home --uid 1000 --group --home /authentik authentik && \
|
2020-10-26 18:07:08 +00:00
|
|
|
mkdir /backups && \
|
2020-12-05 21:08:42 +00:00
|
|
|
chown authentik:authentik /backups
|
2019-02-11 17:01:29 +00:00
|
|
|
|
2021-06-09 14:04:17 +00:00
|
|
|
COPY ./authentik/ /authentik
|
|
|
|
COPY ./pyproject.toml /
|
|
|
|
COPY ./xml /xml
|
|
|
|
COPY ./tests /tests
|
|
|
|
COPY ./manage.py /
|
|
|
|
COPY ./lifecycle/ /lifecycle
|
2021-05-02 22:49:16 +00:00
|
|
|
COPY --from=builder /work/authentik /authentik-proxy
|
2019-10-07 19:23:38 +00:00
|
|
|
|
2020-12-05 21:08:42 +00:00
|
|
|
USER authentik
|
2021-10-05 18:45:18 +00:00
|
|
|
|
2020-11-18 23:53:33 +00:00
|
|
|
ENV TMPDIR /dev/shm/
|
2021-09-14 10:06:47 +00:00
|
|
|
ENV PYTHONUNBUFFERED 1
|
2021-09-03 15:55:12 +00:00
|
|
|
ENV prometheus_multiproc_dir /dev/shm/
|
2021-08-23 12:54:02 +00:00
|
|
|
ENV PATH "/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/lifecycle"
|
2021-10-05 18:45:18 +00:00
|
|
|
|
2021-10-06 07:18:01 +00:00
|
|
|
HEALTHCHECK --interval=30s --timeout=30s --start-period=60s --retries=3 CMD [ "/lifecycle/ak", "healthcheck" ]
|
2021-10-05 18:45:18 +00:00
|
|
|
|
2021-08-23 12:54:02 +00:00
|
|
|
ENTRYPOINT [ "/lifecycle/ak" ]
|