mirror of
https://github.com/tcivie/meshtastic-metrics-exporter.git
synced 2025-01-05 19:07:36 -08:00
8 lines
170 B
Docker
8 lines
170 B
Docker
|
FROM python:3.12-slim
|
||
|
LABEL author="Gleb Tcivie"
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install -r requirements.txt
|
||
|
COPY main.py .
|
||
|
CMD ["python3", "-u", "main.py"]
|