uptime-kuma / Dockerfile
ffreemt
Update Dockerfile
f0d9f6c
raw
history blame contribute delete
255 Bytes
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"]