Fix installing node
This commit is contained in:
Родитель
a15737ce22
Коммит
8bd272258c
|
@ -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
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче