This commit is contained in:
hjelev
2022-03-18 23:56:18 +02:00
parent 6b0a36d45c
commit 1d1f9ba133

View File

@@ -1,13 +0,0 @@
FROM python:3.8-slim-buster
RUN apt-get update
RUN apt-get -y install cron
WORKDIR /app
COPY . /app
RUN pip install paho-mqtt
RUN echo "*/2 * * * * /usr/local/bin/python /app/src/rpi-cpu2mqtt.py > /proc/1/fd/1 2>/proc/1/fd/2" > /etc/cron.d/crontab
RUN chmod 0644 /etc/cron.d/crontab
RUN /usr/bin/crontab /etc/cron.d/crontab
CMD ["cron", "-f"]