uptime-kuma/docker/dockerfile

116 lines
3.9 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
############################################
FROM louislam/uptime-kuma:base-debian AS build
WORKDIR /app
2021-10-07 13:24:10 +00:00
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
2023-01-09 13:01:45 +00:00
COPY .npmrc .npmrc
COPY package.json package.json
COPY package-lock.json package-lock.json
RUN npm ci --omit=dev
COPY . .
COPY --from=build_healthcheck /app/extra/healthcheck /app/extra/healthcheck
2023-01-09 13:01:45 +00:00
RUN chmod +x /app/extra/entrypoint.sh
############################################
# ⭐ Main Image (Slim)
############################################
FROM louislam/uptime-kuma:base-debian AS release-slim
WORKDIR /app
2021-09-07 07:36:29 +00:00
# Copy app files from build layer
2021-09-12 17:43:14 +00:00
COPY --from=build /app /app
2021-07-11 06:20:31 +00: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
ENTRYPOINT ["/usr/bin/dumb-init", "--", "extra/entrypoint.sh"]
CMD ["node", "server/server.js"]
############################################
# ⭐ Main Image (With MariaDB)
############################################
FROM release-slim AS release
2022-07-22 15:15:55 +00: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 15:15:55 +00:00
apt --yes --no-install-recommends install mariadb-server && \
2022-12-23 14:43:56 +00:00
apt remove curl && \
2022-07-22 15:15:55 +00:00
rm -rf /var/lib/apt/lists/* && \
apt --yes autoremove
############################################
# Mark as Nightly
############################################
2021-07-16 18:30:16 +00:00
FROM release AS nightly
RUN npm run mark-as-nightly
2021-09-30 06:44:37 +00:00
############################################
2022-08-29 14:06:47 +00:00
# Build an image for testing pr
############################################
2022-08-29 14:06:47 +00:00
FROM louislam/uptime-kuma:base-debian AS pr-test
WORKDIR /app
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
2022-09-08 14:12:27 +00:00
## Install Git
2022-08-29 14:06:47 +00: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 14:12:27 +00:00
&& apt --yes --no-install-recommends install git
2022-08-29 14:06:47 +00: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 14:06:47 +00: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 10:37:31 +00:00
CMD ["npm", "run", "start-pr-test"]
2022-08-29 14:06:47 +00:00
############################################
2021-09-30 06:44:37 +00:00
# Upload the artifact to Github
############################################
2021-10-01 17:48:15 +00:00
FROM louislam/uptime-kuma:base-debian AS upload-artifact
2021-09-30 06:44:37 +00: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 06:44:37 +00:00
ARG GITHUB_TOKEN
ARG TARGETARCH
ARG PLATFORM=debian
2021-10-01 17:48:15 +00:00
ARG FILE=$PLATFORM-$TARGETARCH-$VERSION.tar.gz
ARG DIST=dist.tar.gz
2021-09-30 06:44:37 +00:00
2021-10-01 17:48:15 +00:00
RUN chmod +x /app/extra/upload-github-release-asset.sh
2021-09-30 06:44:37 +00:00
2021-10-01 17:48:15 +00: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 06:44:37 +00:00
2021-10-01 17:48:15 +00:00
# Dist only
RUN cd /app && tar -zcvf $DIST dist
2021-10-10 16:51:18 +00: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 06:44:37 +00:00