uptime-kuma/docker/dockerfile

52 lines
1.3 KiB
Plaintext
Raw Normal View History

FROM louislam/uptime-kuma:base-debian AS build
WORKDIR /app
2021-10-07 13:24:10 +00:00
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
COPY . .
2021-10-03 07:27:15 +00:00
RUN npm ci && \
npm run build && \
npm ci --production && \
chmod +x /app/extra/entrypoint.sh
FROM louislam/uptime-kuma:base-debian AS release
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"]
HEALTHCHECK --interval=60s --timeout=30s --start-period=180s --retries=5 CMD node extra/healthcheck.js
ENTRYPOINT ["/usr/bin/dumb-init", "--", "extra/entrypoint.sh"]
CMD ["node", "server/server.js"]
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
# 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
ARG GITHUB_TOKEN
ARG TARGETARCH
ARG PLATFORM=debian
2021-10-01 17:48:15 +00:00
ARG VERSION
ARG FILE=$PLATFORM-$TARGETARCH-$VERSION.tar.gz
ARG DIST=dist.tar.gz
2021-09-30 06:44:37 +00:00
COPY --from=build /app /app
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