Skip to content

Commit

Permalink
1.8.5
Browse files Browse the repository at this point in the history
#### Changelog:
* Fix: build docker build.
* Fix: ansible with latest pip does not work on LANG=C.
* Fix: jsmin==3.0.0
  • Loading branch information
onegreyonewhite committed Sep 30, 2021
1 parent 26516b8 commit 399d747
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand All @@ -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/

Expand Down
8 changes: 4 additions & 4 deletions polemarch/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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)

0 comments on commit 399d747

Please sign in to comment.