mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-01 11:22:34 +02:00
46 lines
1.3 KiB
Text
46 lines
1.3 KiB
Text
# DON'T UPDATE TO alpine3.13, 1.14, see #41.
|
|
FROM node:14-alpine3.12 AS release-base
|
|
WORKDIR /app
|
|
|
|
# split the SQLite install here, so that it can caches the ARM prebuilt
|
|
RUN apk add --no-cache --virtual .build-deps make g++ python3 python3-dev && \
|
|
ln -s /usr/bin/python3 /usr/bin/python && \
|
|
npm install sqlite3@5.0.2 bcrypt@5.0.1 && \
|
|
apk del .build-deps
|
|
|
|
# Touching above code may causes sqlite3 re-compile again, painful slow.
|
|
|
|
# Install apprise
|
|
RUN apk add --no-cache python3 py3-cryptography py3-pip py3-six py3-yaml py3-click py3-markdown py3-requests py3-requests-oauthlib
|
|
RUN pip3 --no-cache-dir install apprise && \
|
|
rm -rf /root/.cache
|
|
RUN apprise --version
|
|
|
|
# New things add here
|
|
|
|
FROM release-base AS build
|
|
|
|
COPY . .
|
|
RUN npm install && \
|
|
npm run build && \
|
|
npm prune
|
|
|
|
FROM release-base AS release-final
|
|
|
|
EXPOSE 3001
|
|
VOLUME ["/app/data"]
|
|
HEALTHCHECK --interval=60s --timeout=30s --start-period=300s CMD node extra/healthcheck.js
|
|
|
|
COPY --from=build /app/package.json package.json
|
|
RUN npm install --only=prod
|
|
RUN npm cache clean --force
|
|
RUN rm package-lock.json
|
|
|
|
COPY --from=build /app/extra /app/extra
|
|
COPY --from=build /app/server /app/server
|
|
COPY --from=build /app/dist /app/dist
|
|
|
|
CMD ["npm", "run", "start-server"]
|
|
|
|
FROM release-final AS nightly
|
|
RUN npm run mark-as-nightly
|