mirror of
https://github.com/tcivie/meshtastic-metrics-exporter.git
synced 2025-01-15 07:47:53 -08:00
11 lines
198 B
Docker
11 lines
198 B
Docker
FROM python
|
|
LABEL author="Gleb Tcivie"
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
COPY .env .
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY exporter/ exporter
|
|
COPY main.py .
|
|
CMD ["python3", "-u", "main.py"] |