From ed4ac41e52ab986b4f9c9f6604deca011b1d267e Mon Sep 17 00:00:00 2001 From: Brian Lechthaler Date: Tue, 24 Sep 2019 20:57:21 -0700 Subject: [PATCH] Add Docker Support Added Dockerfile for easier deployment. Does not contain 'CMD pip3 install $packages' directive for module dependency fetching. --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8d95d41 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +#start with a Python 3.x container +FROM python:3 + +#grab repository from github +RUN git clone --recursive https://github.com/tobi-wan-kenobi/bumblebee-status.git /var/bumblebee-status +#run the statusline with no modules or themes specified +CMD python3 /var/bumblebee-status/bumblebee-status