uptime-kuma/docker/dockerfile

115 lines
3.7 KiB
Plaintext
Raw Normal View History

2023-02-05 09:45:36 +00:00
ARG BASE_IMAGE=louislam/uptime-kuma:base2
############################################
# Build in Golang
2023-02-05 09:45:36 +00:00
# Run npm run build-healthcheck-armv7 in the host first, otherwise it will be super slow where it is building the armv7 healthcheck
2023-01-09 05:42:53 +00:00
# Check file: builder-go.dockerfile
############################################
2023-01-09 05:42:53 +00:00
FROM louislam/uptime-kuma:builder-go AS build_healthcheck
2022-12-07 08:47:08 +00:00
############################################
# Build in Node.js
############################################
2023-02-04 10:37:12 +00:00
FROM louislam/uptime-kuma:base2 AS build
2023-02-05 09:45:36 +00:00
USER node
WORKDIR /app
2021-10-07 14:24:10 +01:00
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
COPY --chown=node:node .npmrc .npmrc
COPY --chown=node:node package.json package.json
COPY --chown=node:node package-lock.json package-lock.json
2023-01-09 13:01:45 +00:00
RUN npm ci --omit=dev
COPY . .
COPY --chown=node:node --from=build_healthcheck /app/extra/healthcheck /app/extra/healthcheck
2023-09-01 16:47:36 +01:00
RUN mkdir ./data
############################################
2023-02-05 09:45:36 +00:00
# ⭐ Main Image
############################################
2023-02-05 09:45:36 +00:00
FROM $BASE_IMAGE AS release
2022-09-14 11:05:02 +01:00
USER node
WORKDIR /app
2021-09-07 08:36:29 +01:00
LABEL org.opencontainers.image.source="https://github.com/louislam/uptime-kuma"
2023-06-27 08:54:33 +01:00
ENV UPTIME_KUMA_IS_CONTAINER=1
# Copy app files from build layer
2022-09-14 11:05:02 +01:00
COPY --chown=node:node --from=build /app /app
2021-07-11 07:20:31 +01:00
EXPOSE 3001
2022-12-07 08:47:08 +00:00
HEALTHCHECK --interval=60s --timeout=30s --start-period=180s --retries=5 CMD extra/healthcheck
2022-09-14 11:05:02 +01:00
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["node", "server/server.js"]
############################################
# Rootless Image
############################################
FROM release AS rootless
############################################
# Mark as Nightly
############################################
2021-07-16 19:30:16 +01:00
FROM release AS nightly
RUN npm run mark-as-nightly
2021-09-30 07:44:37 +01:00
FROM nightly AS nightly-rootless
USER node
############################################
2022-08-29 15:06:47 +01:00
# Build an image for testing pr
############################################
2023-02-05 09:45:36 +00:00
FROM louislam/uptime-kuma:base2 AS pr-test2
2022-08-29 15:06:47 +01:00
WORKDIR /app
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
2022-09-08 15:12:27 +01:00
## Install Git
2022-08-29 15:06:47 +01:00
RUN apt update \
&& apt --yes --no-install-recommends install curl \
&& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \
&& chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
&& apt update \
2022-09-08 15:12:27 +01:00
&& apt --yes --no-install-recommends install git
2022-08-29 15:06:47 +01:00
## Empty the directory, because we have to clone the Git repo.
RUN rm -rf ./* && chown node /app
USER node
RUN git config --global user.email "no-reply@no-reply.com"
RUN git config --global user.name "PR Tester"
RUN git clone https://github.com/louislam/uptime-kuma.git .
2022-08-29 15:06:47 +01:00
RUN npm ci
EXPOSE 3000 3001
2023-02-13 08:35:12 +00:00
HEALTHCHECK --interval=60s --timeout=30s --start-period=180s --retries=5 CMD extra/healthcheck
2022-09-03 11:37:31 +01:00
CMD ["npm", "run", "start-pr-test"]
2022-08-29 15:06:47 +01:00
############################################
2021-09-30 07:44:37 +01:00
# Upload the artifact to Github
############################################
2023-02-04 10:37:12 +00:00
FROM louislam/uptime-kuma:base2 AS upload-artifact
2021-09-30 07:44:37 +01:00
WORKDIR /
RUN apt update && \
apt --yes install curl file
COPY --from=build /app /app
2021-12-08 07:35:44 +00:00
ARG VERSION
2021-09-30 07:44:37 +01:00
ARG GITHUB_TOKEN
ARG TARGETARCH
ARG PLATFORM=debian
2021-10-01 18:48:15 +01:00
ARG FILE=$PLATFORM-$TARGETARCH-$VERSION.tar.gz
ARG DIST=dist.tar.gz
2021-09-30 07:44:37 +01:00
2021-10-01 18:48:15 +01:00
RUN chmod +x /app/extra/upload-github-release-asset.sh
2021-09-30 07:44:37 +01:00
2021-10-01 18:48:15 +01:00
# Full Build
# RUN tar -zcvf $FILE app
# RUN /app/extra/upload-github-release-asset.sh github_api_token=$GITHUB_TOKEN owner=louislam repo=uptime-kuma tag=$VERSION filename=$FILE
2021-09-30 07:44:37 +01:00
2021-10-01 18:48:15 +01:00
# Dist only
RUN cd /app && tar -zcvf $DIST dist
2021-10-10 17:51:18 +01:00
RUN /app/extra/upload-github-release-asset.sh github_api_token=$GITHUB_TOKEN owner=louislam repo=uptime-kuma tag=$VERSION filename=/app/$DIST
2021-09-30 07:44:37 +01:00