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

14 lines
312 B
Docker
Raw Normal View History

FROM python:alpine
LABEL author="Gleb Tcivie"
WORKDIR /app
RUN apk add --update --no-cache gcc libc-dev libffi-dev
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 .
COPY ../../constants.py .
CMD ["python3", "-u", "main.py"]