FROM ubuntu:latest RUN apt-get update -y && apt-get upgrade -y RUN apt-get install -y wget python3 -y RUN wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz RUN tar -xvzf ./*.tgz -C /usr/local/bin RUN rm -rf ./*.tgz RUN ngrok config add-authtoken 1oqzJ5pypYTSUPc4KOXZwXNIqLU_4ty2KDAgxrhLwtvGbrj2R RUN mkdir /scripts && touch scripts/init.sh RUN python3 -m http.server 8000 & ngrok http 8000