ovh_dns_ensure/Dockerfile
2024-10-03 13:18:06 +03:00

11 lines
243 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pip install .
VOLUME config
CMD [ "python", "/usr/local/bin/ovh_dns_ensure.py", "--config", "/config/config.conf" ]