2021-12-24 22:25:38 +00:00
|
|
|
# Stage 1: Build website
|
2021-11-22 09:07:23 +00:00
|
|
|
FROM --platform=${BUILDPLATFORM} docker.io/node:16 as website-builder
|
2021-07-13 09:06:51 +00:00
|
|
|
|
2021-11-26 13:19:57 +00:00
|
|
|
COPY ./website /work/website/
|
2021-07-13 09:06:51 +00:00
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
2021-11-26 13:36:44 +00:00
|
|
|
RUN cd /work/website && npm i && npm run build-docs-only
|
2021-07-13 09:06:51 +00:00
|
|
|
|
2021-12-24 22:25:38 +00:00
|
|
|
# Stage 2: Build webui
|
2021-11-22 09:07:23 +00:00
|
|
|
FROM --platform=${BUILDPLATFORM} docker.io/node:16 as web-builder
|
2021-05-02 22:49:16 +00:00
|
|
|
|
2021-11-26 13:19:57 +00:00
|
|
|
COPY ./web /work/web/
|
|
|
|
COPY ./website /work/website/
|
2021-05-02 22:49:16 +00:00
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
2021-11-26 13:36:44 +00:00
|
|
|
RUN cd /work/web && npm i && npm run build
|
2021-05-02 22:49:16 +00:00
|
|
|
|
2021-12-24 22:25:38 +00:00
|
|
|
# Stage 3: Build go proxy
|
2022-02-11 08:45:53 +00:00
|
|
|
FROM docker.io/golang:1.17.7-bullseye AS builder
|
2021-05-02 22:49:16 +00:00
|
|
|
|
|
|
|
WORKDIR /work
|
|
|
|
|
2021-11-26 13:19:57 +00:00
|
|
|
COPY --from=web-builder /work/web/robots.txt /work/web/robots.txt
|
|
|
|
COPY --from=web-builder /work/web/security.txt /work/web/security.txt
|
2021-05-02 22:49:16 +00:00
|
|
|
|
|
|
|
COPY ./cmd /work/cmd
|
|
|
|
COPY ./web/static.go /work/web/static.go
|
|
|
|
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-12-24 22:25:38 +00:00
|
|
|
# Stage 4: Run
|
2022-01-20 07:45:28 +00:00
|
|
|
FROM docker.io/python:3.10.2-slim-bullseye
|
2019-12-30 09:34:31 +00:00
|
|
|
|
2021-12-30 15:33:13 +00:00
|
|
|
LABEL org.opencontainers.image.url https://goauthentik.io
|
|
|
|
LABEL org.opencontainers.image.description goauthentik.io Main server image, see https://goauthentik.io for more info.
|
|
|
|
LABEL org.opencontainers.image.source https://github.com/goauthentik/authentik
|
|
|
|
|
2020-09-09 22:14:59 +00:00
|
|
|
WORKDIR /
|
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
|
|
|
|
|
2021-12-24 22:25:38 +00:00
|
|
|
COPY ./pyproject.toml /
|
|
|
|
COPY ./poetry.lock /
|
|
|
|
|
2019-12-30 09:34:31 +00:00
|
|
|
RUN apt-get update && \
|
2021-11-22 09:07:23 +00:00
|
|
|
apt-get install -y --no-install-recommends \
|
2021-11-22 13:29:21 +00:00
|
|
|
curl ca-certificates gnupg git runit libpq-dev \
|
2021-11-22 09:07:23 +00:00
|
|
|
postgresql-client build-essential libxmlsec1-dev \
|
2021-11-22 13:29:21 +00:00
|
|
|
pkg-config libmaxminddb0 && \
|
2021-12-24 22:25:38 +00:00
|
|
|
pip install poetry && \
|
|
|
|
poetry config virtualenvs.create false && \
|
|
|
|
poetry install --no-dev && \
|
|
|
|
rm -rf ~/.cache/pypoetry && \
|
2021-11-22 13:29:21 +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 && \
|
2021-12-11 13:23:53 +00:00
|
|
|
mkdir -p /backups /certs /media && \
|
2021-12-25 18:18:47 +00:00
|
|
|
mkdir -p /authentik/.ssh && \
|
|
|
|
chown authentik:authentik /backups /certs /media /authentik/.ssh
|
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
|
2021-12-01 20:25:01 +00:00
|
|
|
COPY --from=web-builder /work/web/dist/ /web/dist/
|
|
|
|
COPY --from=web-builder /work/web/authentik/ /web/authentik/
|
|
|
|
COPY --from=website-builder /work/website/help/ /website/help/
|
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-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" ]
|