This commit is contained in:
Andreas Wagner 2017-05-10 22:39:09 +02:00
Родитель a15737ce22
Коммит 8bd272258c
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -31,8 +31,6 @@ RUN yum install -y \
python-devel \ python-devel \
# Git, because we're using git-checkout dependencies # Git, because we're using git-checkout dependencies
git \ git \
# Nodejs for less, stylus, uglifyjs and others
nodejs \
# Dependencies for mysql-python # Dependencies for mysql-python
mysql-community-devel \ mysql-community-devel \
mysql-community-client \ mysql-community-client \
@ -41,6 +39,10 @@ RUN yum install -y \
swig \ swig \
&& yum clean all && yum clean all
# Install Nodejs (for less, stylus, uglifyjs and others) separately, because
# it's part of epel which we just installed above.
RUN yum install -y nodejs
# Compile required locale # Compile required locale
RUN localedef -i en_US -f UTF-8 en_US.UTF-8 RUN localedef -i en_US -f UTF-8 en_US.UTF-8