2020-05-26 00:07:03 +02:00
|
|
|
# build stage
|
2024-10-17 09:39:28 +02:00
|
|
|
FROM --platform=$BUILDPLATFORM node:22-alpine3.20 AS build-stage
|
2024-04-22 19:55:25 +02:00
|
|
|
|
|
|
|
ENV PNPM_HOME="/pnpm"
|
|
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
2024-11-11 17:17:11 +01:00
|
|
|
|
|
|
|
RUN corepack enable && corepack use pnpm@9
|
2020-05-26 00:07:03 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-04-22 19:55:25 +02:00
|
|
|
COPY package.json pnpm-lock.yaml ./
|
|
|
|
RUN pnpm install --frozen-lockfile
|
2020-05-26 00:07:03 +02:00
|
|
|
|
|
|
|
COPY . .
|
2024-04-22 19:55:25 +02:00
|
|
|
RUN pnpm build
|
2020-05-26 00:07:03 +02:00
|
|
|
|
|
|
|
# production stage
|
2024-10-17 09:39:28 +02:00
|
|
|
FROM alpine:3.20
|
2020-01-21 21:29:57 +01:00
|
|
|
|
2024-11-11 17:17:11 +01:00
|
|
|
ENV GID=1000 \
|
|
|
|
UID=1000 \
|
|
|
|
PORT=8080 \
|
|
|
|
SUBFOLDER="/_" \
|
|
|
|
INIT_ASSETS=1 \
|
|
|
|
IPV6_DISABLE=0
|
2020-01-21 21:29:57 +01:00
|
|
|
|
2022-04-10 11:55:11 +02:00
|
|
|
RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd && \
|
2024-11-12 18:06:58 +01:00
|
|
|
apk add -U --no-cache tzdata lighttpd
|
2020-01-21 21:29:57 +01:00
|
|
|
|
2022-04-10 11:55:11 +02:00
|
|
|
WORKDIR /www
|
2020-06-11 03:32:24 +02:00
|
|
|
|
2022-04-10 11:55:11 +02:00
|
|
|
COPY lighttpd.conf /lighttpd.conf
|
2023-09-26 02:15:31 +02:00
|
|
|
COPY lighttpd-ipv6.sh /etc/lighttpd/ipv6.sh
|
2022-04-10 11:55:11 +02:00
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
COPY --from=build-stage --chown=${UID}:${GID} /app/dist /www/
|
2022-04-30 15:58:04 +02:00
|
|
|
COPY --from=build-stage --chown=${UID}:${GID} /app/dist/assets /www/default-assets
|
2022-04-10 11:55:11 +02:00
|
|
|
|
|
|
|
USER ${UID}:${GID}
|
|
|
|
|
2021-10-06 22:55:53 +02:00
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
|
2021-08-15 15:34:17 +02:00
|
|
|
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1
|
|
|
|
|
2020-06-12 18:50:07 +02:00
|
|
|
EXPOSE ${PORT}
|
2022-04-10 11:55:11 +02:00
|
|
|
|
2020-06-12 18:50:07 +02:00
|
|
|
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|