2020-05-22 14:28:09 +00:00
|
|
|
FROM python:3-alpine
|
|
|
|
RUN pip install --no-cache-dir --upgrade pip
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY src/ ./
|
2020-05-24 11:35:27 +00:00
|
|
|
RUN pip install --no-cache-dir --requirement requirements.txt
|
2020-05-22 14:28:09 +00:00
|
|
|
CMD [ "python", "ddns_update.py" ]
|