mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
97472cb91b
Fallout from https://github.com/ansible/awx/pull/982
22 lines
423 B
Docker
22 lines
423 B
Docker
FROM centos:7
|
|
|
|
RUN yum install -y epel-release
|
|
RUN yum install -y https://centos7.iuscommunity.org/ius-release.rpm
|
|
|
|
RUN yum install -y bzip2 \
|
|
gcc-c++ \
|
|
gettext \
|
|
git2u-core \
|
|
make \
|
|
python \
|
|
python-pip
|
|
|
|
RUN curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
|
|
RUN yum install -y nodejs
|
|
RUN npm set progress=false
|
|
|
|
WORKDIR "/awx"
|
|
|
|
ENTRYPOINT ["/bin/bash", "-c"]
|
|
CMD ["make sdist"]
|