2021-01-29 08:28:35 +00:00
|
|
|
FROM python:3.7
|
2021-01-25 09:33:36 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
ADD requirements.txt /app/requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
2021-01-28 10:56:11 +00:00
|
|
|
ADD syncthing_monitor /app/syncthing_monitor
|
2021-01-25 09:33:36 +00:00
|
|
|
|
2021-01-28 10:56:11 +00:00
|
|
|
CMD ["python", "-m", "syncthing_monitor"]
|