mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 00:21:30 -03:30
22 lines
390 B
Docker
22 lines
390 B
Docker
FROM centos:7
|
|
|
|
RUN yum install -y epel-release
|
|
|
|
RUN yum install -y bzip2 \
|
|
gcc-c++ \
|
|
gettext \
|
|
git \
|
|
make \
|
|
python36-setuptools
|
|
|
|
RUN curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
|
|
RUN yum install -y nodejs
|
|
RUN npm set progress=false
|
|
|
|
RUN ln -s /usr/bin/python36 /usr/bin/python3
|
|
|
|
WORKDIR "/awx"
|
|
|
|
ENTRYPOINT ["/bin/bash", "-c"]
|
|
CMD ["make sdist"]
|