From 84c7976e0642bef711e4dc02760128acd55470e3 Mon Sep 17 00:00:00 2001 From: Cian Gallagher Date: Sat, 22 Jan 2022 18:32:49 +0000 Subject: [PATCH] DOCKER: Add dockerfile with base debian image --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4437355 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM bitnami/minideb:jessie + +ENV SWB_VERSION=0.2.4 + +RUN apt-get update && apt-get install -y curl + +RUN curl -L https://github.com/Cian911/switchboard/releases/download/v${SWB_VERSION}/switchboard_${SWB_VERSION}_linux_64-bit.deb -o switchboard_${SWB_VERSION}_linux_64-bit.deb && \ + dpkg -i switchboard_${SWB_VERSION}_linux_64-bit.deb && \ + rm switchboard_${SWB_VERSION}_linux_64-bit.deb + +ENTRYPOINT ["switchboard"]