ddns-updater/Dockerfile
2024-11-10 15:06:21 +00:00

6 lines
134 B
Docker

FROM python:3.9.13-slim-buster
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["python3", "-u", "update_client.py"]