File size: 255 Bytes
d08b344
 
4dbd057
f0d9f6c
 
 
 
 
 
 
4dbd057
04eb669
f0d9f6c
4dbd057
 
f0d9f6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"]