Spaces:
Runtime error
Runtime error
FROM chipsman/uptime-kuma:latest | |
# FROM louislam/uptime-kuma | |
RUN <<EOF | |
apk update | |
apk add --no-cache nodejs npm | |
mkdir -p /app/data | |
EOF | |
COPY ./data/db-config.json ./data | |
RUN chown -R node:node /app | |
USER node | |
EXPOSE 3001 | |
CMD ["node","server/server.js"] | |