Fixed IPv6 access inside Docker container

This commit is contained in:
timothymiller
2020-08-13 18:26:43 -04:00
parent 1e55144bf2
commit 5ac69b8274
5 changed files with 30 additions and 32 deletions

View File

@@ -11,7 +11,7 @@ RUN pip install -r requirements.txt
#
# ---- Release ----
FROM dependencies AS release
# copy project file(s)
# copy project source file(s)
WORKDIR /
COPY cloudflare-ddns.py .
CMD ["python", "/cloudflare-ddns.py", "--repeat"]
CMD ["python", "-u", "/cloudflare-ddns.py", "--repeat"]