Initial commit
This commit is contained in:
commit
e143984090
8 changed files with 205 additions and 0 deletions
5
worker/Dockerfile
Normal file
5
worker/Dockerfile
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
FROM python:alpine
|
||||
RUN pip install influxdb
|
||||
RUN pip install requests
|
||||
COPY worker.py /
|
||||
CMD ["python", "worker.py"]
|
||||
Reference in a new issue