From 7555fe32351bdefc84b525d2bfe915484ac05a64 Mon Sep 17 00:00:00 2001 From: Andrew Cornford Date: Mon, 15 Sep 2025 10:57:04 +0100 Subject: [PATCH] Make dockerfile work again --- docker/dockerfile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docker/dockerfile b/docker/dockerfile index b082f9e3..9571d1e1 100644 --- a/docker/dockerfile +++ b/docker/dockerfile @@ -9,18 +9,22 @@ RUN apt-get clean && apt-get update && apt-get upgrade -y # Set the locale RUN apt-get install -y locales && locale-gen en_US.UTF-8 -#Install required python packages +#Install required python packages RUN pip install paho-mqtt -RUN pip install requests +RUN pip install requests RUN pip install influxdb -RUN pip install influxdb-client +RUN pip install influxdb-client +RUN pip install psutil COPY grott.py /app/grott.py COPY grottconf.py /app/grottconf.py COPY grottdata.py /app/grottdata.py COPY grottproxy.py /app/grottproxy.py COPY grottsniffer.py /app/grottsniffer.py -COPY grott.ini /app/grott.ini +COPY grottserver.py /app/grottserver.py +COPY examples/grott.ini /app/grott.ini +COPY examples/Extensions/grottext.py /app/grottext.py +COPY examples/Extensions/grotcsv.py /app/grotcsv.py WORKDIR /app -CMD ["python", "-u", "grott.py", "-v"] \ No newline at end of file +CMD ["python", "-u", "grott.py", "-v"]