mirror of
https://github.com/tcivie/meshtastic-metrics-exporter.git
synced 2024-12-31 16:37:33 -08:00
11 lines
221 B
Docker
11 lines
221 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"] |