huawei_lte_exporter/Dockerfile

10 lines
188 B
Docker
Raw Permalink Normal View History

FROM python:3.12.4
2020-04-06 22:27:29 +02:00
WORKDIR /usr/src/huwawei_lte_exporter
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./huwawei_lte_exporter" ]