You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM ubuntu
|
|
WORKDIR /app
|
|
RUN apt update && apt --yes install git curl
|
|
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
|
|
RUN apt --yes install nodejs
|
|
RUN git clone https://github.com/louislam/uptime-kuma.git .
|
|
RUN npm run setup
|
|
|
|
# Option 1. Try it
|
|
RUN node server/server.js
|