File size: 159 Bytes
313c7b4
9bbeca0
 
 
 
 
313c7b4
 
 
1
2
3
4
5
6
7
8
9
FROM chipsman/uptime-kuma:latest

# Install Node.js
RUN apt-get update && \
    apt-get install -y nodejs npm
    
EXPOSE 3001

CMD ["node" "server/server.js"]