meshtastic-metrics-exporter/docker/exporter/Dockerfile.exporter

11 lines
221 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 .
COPY ../../.env .
2024-06-24 11:44:10 -07:00
RUN pip3 install -r requirements.txt
COPY ../../exporter exporter
COPY ../../main.py .
CMD ["python3", "-u", "main.py"]