2021-08-18 07:55:03 +01:00
|
|
|
FROM ubuntu:16.04
|
2021-10-07 14:23:28 +01:00
|
|
|
RUN apt-get update
|
|
|
|
RUN apt --yes install curl
|
2021-08-18 07:55:03 +01:00
|
|
|
|
2021-08-18 19:04:49 +01:00
|
|
|
# Test invalid node version, these commands install nodejs 10
|
2021-10-07 14:23:28 +01:00
|
|
|
#RUN apt --yes install nodejs
|
2021-08-18 19:04:49 +01:00
|
|
|
# RUN ln -s /usr/bin/nodejs /usr/bin/node
|
|
|
|
# RUN node -v
|
|
|
|
|
2021-10-07 14:23:28 +01:00
|
|
|
RUN curl -o kuma_install.sh http://git.kuma.pet/install.sh && bash kuma_install.sh local /opt/uptime-kuma 3000 0.0.0.0
|