[FIX]Odoo base images with good UTF8 encoding
This commit is contained in:
parent
0185f00bb5
commit
530e8b6e91
@ -1,6 +1,10 @@
|
|||||||
FROM debian:jessie
|
FROM debian:jessie
|
||||||
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
||||||
|
|
||||||
|
# http://bugs.python.org/issue19846
|
||||||
|
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
|
||||||
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Odoo dependencies from Debian APT repository
|
# Odoo dependencies from Debian APT repository
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
FROM python:3.6-stretch
|
FROM python:3.6-stretch
|
||||||
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
||||||
|
|
||||||
|
# http://bugs.python.org/issue19846
|
||||||
|
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
|
||||||
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Odoo dependencies from Debian APT repository
|
# Odoo dependencies from Debian APT repository
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
Loading…
Reference in New Issue
Block a user