2020-06-05 00:43:19 +00:00
# ========================================
# ===== Build image for the frontend =====
# ========================================
2022-10-21 09:34:44 +00:00
FROM node:19-alpine AS builder-frontend
2020-06-05 00:43:19 +00:00
WORKDIR /node/src/app
2021-06-18 04:35:43 +00:00
2022-12-13 03:11:53 +00:00
COPY .local /root/.local
2021-06-18 04:35:43 +00:00
COPY web ./
2020-06-05 00:43:19 +00:00
# Install the dependencies and build
2021-09-29 07:24:21 +00:00
RUN yarn global add pnpm && \
2021-10-11 09:30:02 +00:00
pnpm install --frozen-lockfile && pnpm coverage
2020-06-05 00:43:19 +00:00
# =======================================
# ===== Build image for the backend =====
# =======================================
2023-01-11 03:48:33 +00:00
FROM golang:1.19.5-alpine AS builder-backend
2020-06-05 00:43:19 +00:00
WORKDIR /go/src/app
2021-09-30 23:58:33 +00:00
RUN \
2022-12-23 00:03:50 +00:00
echo ">> Downloading required apk's..." && \
apk --no-cache add gcc musl-dev
2021-09-30 23:58:33 +00:00
2021-06-18 04:35:43 +00:00
COPY go.mod go.sum ./
RUN \
2022-12-23 00:03:50 +00:00
echo ">> Downloading go modules..." && \
go mod download
2021-06-18 04:35:43 +00:00
2021-06-06 04:46:31 +00:00
COPY / ./
2020-06-05 00:43:19 +00:00
# Prepare static files to be embedded in Go binary
2021-06-25 11:53:20 +00:00
COPY --from= builder-frontend /node/src/internal/server/public_html internal/server/public_html
2020-06-05 00:43:19 +00:00
2021-06-18 04:35:43 +00:00
ARG LDFLAGS_EXTRA
2021-06-06 04:46:31 +00:00
RUN \
2022-12-23 00:03:50 +00:00
mv api internal/server/public_html/api && \
cd cmd/authelia && \
chmod 0666 /go/src/app/.healthcheck.env && \
echo ">> Starting go build (coverage via go test)..." && \
CGO_ENABLED = 1 CGO_CPPFLAGS = "-D_FORTIFY_SOURCE=2 -fstack-protector-strong" CGO_LDFLAGS = "-Wl,-z,relro,-z,now" go test -c --tags coverage -covermode= atomic \
-ldflags " ${ LDFLAGS_EXTRA } " -o authelia -coverpkg github.com/authelia/authelia/...
2020-06-05 00:43:19 +00:00
# ===================================
# ===== Authelia official image =====
# ===================================
2023-01-09 22:09:34 +00:00
FROM alpine:3.17.1
2020-06-05 00:43:19 +00:00
RUN apk --no-cache add ca-certificates tzdata
2020-06-17 06:25:35 +00:00
WORKDIR /app
2020-06-05 00:43:19 +00:00
2021-08-05 04:02:07 +00:00
COPY --from= builder-backend /go/src/app/cmd/authelia/authelia /go/src/app/LICENSE /go/src/app/healthcheck.sh /go/src/app/.healthcheck.env ./
2020-06-05 00:43:19 +00:00
EXPOSE 9091
2020-06-17 06:25:35 +00:00
VOLUME /config
2020-06-05 00:43:19 +00:00
2022-12-23 00:03:50 +00:00
ENV PATH = " /app: ${ PATH } " \
X_AUTHELIA_CONFIG = "/config/configuration.yml"
2020-06-05 00:43:19 +00:00
2022-12-23 00:03:50 +00:00
CMD [ "authelia" , "-test.coverprofile=/authelia/coverage.txt" , "COVERAGE" ]
2021-06-06 04:46:31 +00:00
HEALTHCHECK --interval=30s --timeout=3s CMD /app/healthcheck.sh