2023-10-19 19:38:13 +00:00
|
|
|
FROM python:3-alpine
|
|
|
|
|
2023-10-19 20:20:02 +00:00
|
|
|
RUN apk add --no-cache git
|
|
|
|
|
2023-10-19 19:38:13 +00:00
|
|
|
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/
|