nomad-service-fixers/Dockerfile

12 lines
252 B
Docker
Raw Permalink Normal View History

FROM python:3-alpine
2023-10-19 20:20:02 +00:00
RUN apk add --no-cache git
RUN mkdir /scripts
WORKDIR /scripts
COPY ./requirements.txt /scripts/
RUN pip install --no-cache-dir -r /scripts/requirements.txt
COPY ./nomad_missing_services.py ./nomad_orphan_services.py /scripts/