meshtastic-metrics-exporter/docker/exporter/Dockerfile.exporter
2024-07-10 09:34:30 +03:00

12 lines
247 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 .
COPY ../../constants.py .
CMD ["python3", "-u", "main.py"]