1
0
mirror of /repos/baseimage-docker.git synced 2025-12-31 08:11:29 +01:00

changed FROM

This commit is contained in:
Aiko Mastboom 2015-05-09 17:03:28 +02:00
parent c983f03960
commit bb446e00ce
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,5 @@
FROM ubuntu:14.04 # FROM ubuntu:14.04
FROM resin/rpi-raspbian:wheezy
MAINTAINER Phusion <info@phusion.nl> MAINTAINER Phusion <info@phusion.nl>
ENV HOME /root ENV HOME /root

View File

@ -42,8 +42,11 @@ $minimal_apt_get_install software-properties-common
apt-get dist-upgrade -y --no-install-recommends apt-get dist-upgrade -y --no-install-recommends
## Fix locale. ## Fix locale.
$minimal_apt_get_install language-pack-en # $minimal_apt_get_install language-pack-en
locale-gen en_US #locale-gen en_US
$minimal_apt_get_install locales
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
/usr/sbin/locale-gen
update-locale LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 update-locale LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
echo -n en_US.UTF-8 > /etc/container_environment/LANG echo -n en_US.UTF-8 > /etc/container_environment/LANG
echo -n en_US.UTF-8 > /etc/container_environment/LC_CTYPE echo -n en_US.UTF-8 > /etc/container_environment/LC_CTYPE