7 lines
190 B
Docker
7 lines
190 B
Docker
FROM python:3-alpine
|
|
RUN pip install --no-cache-dir --upgrade pip
|
|
|
|
WORKDIR /app
|
|
COPY src/ ./
|
|
RUN pip install --no-cache-dir --requirement requirements.txt
|
|
CMD [ "python", "ddns_update.py" ]
|