2021-09-16 12:39:18 +00:00
|
|
|
# ========================================
|
|
|
|
# ===== Build image for the frontend =====
|
|
|
|
# ========================================
|
2022-10-21 09:34:44 +00:00
|
|
|
FROM node:19-alpine AS builder-frontend
|
2021-09-16 12:39:18 +00:00
|
|
|
|
|
|
|
WORKDIR /node/src/app
|
|
|
|
|
|
|
|
COPY web ./
|
|
|
|
|
|
|
|
# Install the dependencies and build
|
2021-10-11 09:30:02 +00:00
|
|
|
RUN yarn install --frozen-lockfile && yarn build
|
2021-09-16 12:39:18 +00:00
|
|
|
|
2019-11-07 00:59:24 +00:00
|
|
|
# =======================================
|
|
|
|
# ===== Build image for the backend =====
|
|
|
|
# =======================================
|
2022-11-02 03:42:08 +00:00
|
|
|
FROM golang:1.19.3-alpine AS builder-backend
|
2019-11-07 00:59:24 +00:00
|
|
|
|
2021-06-18 04:35:43 +00:00
|
|
|
WORKDIR /go/src/app
|
|
|
|
|
2021-09-30 23:58:33 +00:00
|
|
|
RUN \
|
|
|
|
echo ">> Downloading required apk's..." && \
|
|
|
|
apk --no-cache add gcc musl-dev
|
|
|
|
|
2021-06-18 04:35:43 +00:00
|
|
|
COPY go.mod go.sum ./
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
echo ">> Downloading go modules..." && \
|
|
|
|
go mod download
|
2019-11-30 16:49:52 +00:00
|
|
|
|
2021-06-06 04:46:31 +00:00
|
|
|
COPY / ./
|
2019-12-08 15:51:12 +00:00
|
|
|
|
2021-09-16 12:39:18 +00:00
|
|
|
# Prepare static files to be embedded in Go binary
|
|
|
|
COPY --from=builder-frontend /node/src/internal/server/public_html internal/server/public_html
|
2021-06-22 00:45:33 +00:00
|
|
|
|
2021-09-16 12:39:18 +00:00
|
|
|
ARG LDFLAGS_EXTRA
|
2021-06-06 04:46:31 +00:00
|
|
|
RUN \
|
2021-09-16 12:39:18 +00:00
|
|
|
mv api internal/server/public_html/api && \
|
2021-08-05 04:02:07 +00:00
|
|
|
chmod 0666 /go/src/app/.healthcheck.env && \
|
2021-06-18 04:35:43 +00:00
|
|
|
echo ">> Starting go build..." && \
|
2021-09-30 23:58:33 +00:00
|
|
|
CGO_ENABLED=1 CGO_CPPFLAGS="-D_FORTIFY_SOURCE=2 -fstack-protector-strong" CGO_LDFLAGS="-Wl,-z,relro,-z,now" go build \
|
|
|
|
-ldflags "-linkmode=external -s -w ${LDFLAGS_EXTRA}" -trimpath -buildmode=pie -o authelia ./cmd/authelia
|
2019-11-07 00:59:24 +00:00
|
|
|
|
|
|
|
# ===================================
|
|
|
|
# ===== Authelia official image =====
|
|
|
|
# ===================================
|
2022-11-13 12:26:20 +00:00
|
|
|
FROM alpine:3.16.3
|
2019-11-07 00:59:24 +00:00
|
|
|
|
2020-10-19 00:24:24 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
2021-09-16 12:39:18 +00:00
|
|
|
# Set environment variables
|
|
|
|
ENV PATH="/app:${PATH}" \
|
|
|
|
PUID=0 \
|
|
|
|
PGID=0
|
|
|
|
|
2021-06-18 04:35:43 +00:00
|
|
|
RUN \
|
2021-06-24 08:24:47 +00:00
|
|
|
apk --no-cache add ca-certificates su-exec tzdata
|
2019-11-07 00:59:24 +00:00
|
|
|
|
2022-02-07 22:40:51 +00:00
|
|
|
COPY --from=builder-backend /go/src/app/authelia /go/src/app/LICENSE /go/src/app/entrypoint.sh /go/src/app/healthcheck.sh /go/src/app/.healthcheck.env ./
|
2021-09-16 12:39:18 +00:00
|
|
|
|
|
|
|
RUN \
|
|
|
|
chmod 0666 /app/.healthcheck.env
|
2019-11-07 00:59:24 +00:00
|
|
|
|
|
|
|
EXPOSE 9091
|
|
|
|
|
2020-06-17 06:25:35 +00:00
|
|
|
VOLUME /config
|
2019-11-07 00:59:24 +00:00
|
|
|
|
2021-06-06 04:46:31 +00:00
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|
2020-10-18 23:12:21 +00:00
|
|
|
CMD ["--config", "/config/configuration.yml"]
|
2021-06-06 04:46:31 +00:00
|
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=1m CMD /app/healthcheck.sh
|