ddns-updater/Dockerfile

6 lines
134 B
Docker
Raw Permalink Normal View History

2024-11-10 15:06:21 +00:00
FROM python:3.9.13-slim-buster
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["python3", "-u", "update_client.py"]