uptime-kuma / Dockerfile
binjoo's picture
Create Dockerfile
68bae91 verified
raw
history blame contribute delete
No virus
284 Bytes
FROM alpine AS builder
RUN apk add --no-cache nodejs npm git
RUN npm install npm -g
RUN adduser -D app
USER app
WORKDIR /home/app
RUN git clone https://github.com/louislam/uptime-kuma.git
WORKDIR /home/app/uptime-kuma
RUN npm run setup
EXPOSE 3001
CMD ["node", "server/server.js"]