meshtastic-metrics-exporter/Dockerfile

11 lines
198 B
Docker
Raw Normal View History

2024-06-24 11:44:10 -07:00
FROM python
LABEL author="Gleb Tcivie"
WORKDIR /app
COPY requirements.txt .
2024-06-24 11:44:10 -07:00
COPY .env .
RUN pip3 install -r requirements.txt
COPY exporter/ exporter
COPY main.py .
CMD ["python3", "-u", "main.py"]