weatherstation-influx/Dockerfile

10 lines
125 B
Docker

FROM python:3.7-rc-alpine
RUN pip install tinkerforge requests
WORKDIR /app
COPY . .
CMD ["python3.7", "/app/import.py"]