10 lines
224 B
Docker
10 lines
224 B
Docker
|
FROM python:3-alpine
|
||
|
|
||
|
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/
|