diff --git a/Dockerfile b/Dockerfile index a7342bf2..38e37d5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,14 +19,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -RUN echo "nameserver 8.8.8.8" > /etc/resolv.conf - ENV LANG C.UTF-8 ADD . /opt/program/ ENV PATH="/opt/program:${PATH}" +RUN echo "185.199.108.133 raw.githubusercontent.com" >> /etc/hosts + WORKDIR /opt/program RUN chmod +x * diff --git a/src/classes/Changelog.py b/src/classes/Changelog.py index 91144fc0..4bf42302 100644 --- a/src/classes/Changelog.py +++ b/src/classes/Changelog.py @@ -7,7 +7,7 @@ from classes.ColorText import colorText -VERSION = "2.04" +VERSION = "2.05" changelog = colorText.BOLD + '[ChangeLog]\n' + colorText.END + colorText.BLUE + ''' [1.00 - Beta] @@ -228,4 +228,8 @@ 3. Progressbar added for screening to GUI 4. Documentation updated +[2.05] +1. Download Results button added +2. Docker DNS moved to Google DNS + ''' + colorText.END