mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-26 04:18:46 +00:00
While the locales are generated with locale-gen, this does not enforce the en_US.UTF-8 locale inside the container. See the following links for more information: - https://github.com/docker/docker/issues/2424 - http://jaredmarkell.com/docker-and-locales/
17 lines
310 B
Docker
17 lines
310 B
Docker
FROM ubuntu:16.04
|
|
MAINTAINER Phusion <info@phusion.nl>
|
|
|
|
ADD . /bd_build
|
|
|
|
RUN /bd_build/prepare.sh && \
|
|
/bd_build/system_services.sh && \
|
|
/bd_build/utilities.sh && \
|
|
/bd_build/fix_pam_bug.sh && \
|
|
/bd_build/cleanup.sh
|
|
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
CMD ["/sbin/my_init"]
|