diff --git a/Dockerfile b/Dockerfile index 97c85e7b..d3008278 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,9 @@ WORKDIR /usr/local/project COPY . . -ENV WORKER=ENABLE - LC_ALL = en_US.UTF-8 - LANG = en_US.UTF-8 +ENV WORKER=ENABLE \ + LC_ALL=en_US.UTF-8 \ + LANG=en_US.UTF-8 RUN tox -c tox_build.ini -e py36-build && \ mv dist/ environment/docker_data/ @@ -15,9 +15,9 @@ RUN tox -c tox_build.ini -e py36-build && \ FROM alpine:3.11 -ENV WORKER=ENABLE - LC_ALL = en_US.UTF-8 - LANG = en_US.UTF-8 +ENV WORKER=ENABLE \ + LC_ALL=en_US.UTF-8 \ + LANG=en_US.UTF-8 COPY --from=build /usr/local/project/environment/docker_data/ /etc/polemarch/ diff --git a/polemarch/__init__.py b/polemarch/__init__.py index acb1787d..2aba8b30 100644 --- a/polemarch/__init__.py +++ b/polemarch/__init__.py @@ -1,11 +1,11 @@ -''' +""" ### Polemarch is ansible based service for orchestration infrastructure. -* [Documentation](http://polemarch.readthedocs.io/) +* [Documentation](https://polemarch.readthedocs.io/) * [Issue Tracker](https://gitlab.com/vstconsulting/polemarch/issues) * [Source Code](https://gitlab.com/vstconsulting/polemarch) -''' +""" import os import warnings @@ -31,6 +31,6 @@ "VST_ROOT_URLCONF": os.getenv("VST_ROOT_URLCONF", 'vstutils.urls'), } -__version__ = "1.8.4" +__version__ = "1.8.5" prepare_environment(**default_settings)