From e38e567e3e2214175f06a6eebe42b710176d6050 Mon Sep 17 00:00:00 2001 From: Wayne Connolly Date: Fri, 29 Jun 2018 16:59:08 +1000 Subject: [PATCH] Create Dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c30ef56 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM alpine +ADD script.sh /bin/ +RUN chmod +x /bin/script.sh +RUN apk -Uuv add curl tar ca-certificates +ENTRYPOINT /bin/script.sh