uptime-kuma/docker/dockerfile

117 lines
4.0 KiB
Plaintext
Raw Normal View History

############################################
# Build in Golang
# Run npm run build-healthcheck-armv7 in the host first, another 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
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
############################################
# ⭐ Main Image (Slim)
############################################
2023-02-04 10:37:12 +00:00
FROM louislam/uptime-kuma:base2 AS release-slim
2022-09-14 11:05:02 +01:00
USER node
WORKDIR /app
2021-09-07 08:36:29 +01:00
# 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
VOLUME ["/app/data"]
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"]
############################################
# ⭐ Main Image (With MariaDB)
############################################
FROM release-slim AS release
2022-07-22 16:15:55 +01:00
RUN apt update && \
2022-12-23 14:43:56 +00:00
apt --yes --no-install-recommends install curl && \
curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | bash -s -- --mariadb-server-version="mariadb-10.11" && \
2022-07-22 16:15:55 +01:00
apt --yes --no-install-recommends install mariadb-server && \
2022-12-23 14:43:56 +00:00
apt remove curl && \
2022-07-22 16:15:55 +01:00
rm -rf /var/lib/apt/lists/* && \
apt --yes autoremove
############################################
# Mark as Nightly
############################################
2021-07-16 19:30:16 +01:00
FROM release AS nightly
2022-09-14 11:05:02 +01:00
USER node
2021-07-16 19:30:16 +01:00
RUN npm run mark-as-nightly
2021-09-30 07:44:37 +01:00
############################################
2022-08-29 15:06:47 +01:00
# Build an image for testing pr
############################################
2023-02-04 10:37:12 +00:00
FROM louislam/uptime-kuma:base2 AS pr-test
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
VOLUME ["/app/data"]
HEALTHCHECK --interval=60s --timeout=30s --start-period=180s --retries=5 CMD node extra/healthcheck.js
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