All checks were successful
continuous-integration/drone/push Build is passing
5 lines
116 B
Docker
5 lines
116 B
Docker
FROM python:3-alpine
|
|
RUN pip install influxdb
|
|
RUN pip install requests
|
|
COPY worker.py /
|
|
CMD ["python", "worker.py"]
|