mirror of
https://github.com/docker/compose.git
synced 2025-07-20 20:24:30 +02:00
Python3 requires a locale
Signed-off-by: Daniel Nephin <dnephin@gmail.com>
This commit is contained in:
parent
bd7c032a00
commit
1451a6e188
@ -3,6 +3,7 @@ FROM debian:wheezy
|
|||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
apt-get update -qq; \
|
apt-get update -qq; \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
|
locales \
|
||||||
gcc \
|
gcc \
|
||||||
make \
|
make \
|
||||||
zlib1g \
|
zlib1g \
|
||||||
@ -61,6 +62,10 @@ RUN set -ex; \
|
|||||||
rm -rf pip-7.0.1; \
|
rm -rf pip-7.0.1; \
|
||||||
rm pip-7.0.1.tar.gz
|
rm pip-7.0.1.tar.gz
|
||||||
|
|
||||||
|
# Python3 requires a valid locale
|
||||||
|
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
|
||||||
|
ENV LANG en_US.UTF-8
|
||||||
|
|
||||||
ENV ALL_DOCKER_VERSIONS 1.7.1 1.8.1
|
ENV ALL_DOCKER_VERSIONS 1.7.1 1.8.1
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
|
coverage==3.7.1
|
||||||
flake8==2.3.0
|
flake8==2.3.0
|
||||||
git+https://github.com/pyinstaller/pyinstaller.git@12e40471c77f588ea5be352f7219c873ddaae056#egg=pyinstaller
|
git+https://github.com/pyinstaller/pyinstaller.git@12e40471c77f588ea5be352f7219c873ddaae056#egg=pyinstaller
|
||||||
mock >= 1.0.1
|
mock >= 1.0.1
|
||||||
nose==1.3.4
|
nose==1.3.4
|
||||||
pep8==1.6.1
|
pep8==1.6.1
|
||||||
coverage==3.7.1
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user