meshtastic-metrics-exporter/docker/exporter/Dockerfile.exporter
Gleb Tcivie 58eb131488
Update Dockerfile.exporter
Looks like the basic alpine is missing required meshtastic package
2024-10-21 14:38:22 +03:00

14 lines
323 B
Docker

FROM python:3.9.20-alpine3.19
LABEL author="Gleb Tcivie"
WORKDIR /app
RUN apk add --update --no-cache gcc libc-dev libffi-dev
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"]