mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 06:51:10 +03:00
86140dec08
This reverts commit 97472cb91b
.
# Conflicts:
# installer/roles/image_build/tasks/main.yml
21 lines
348 B
Docker
21 lines
348 B
Docker
FROM centos:7
|
|
|
|
RUN yum install -y epel-release
|
|
|
|
RUN yum install -y bzip2 \
|
|
gcc-c++ \
|
|
gettext \
|
|
git \
|
|
make \
|
|
python \
|
|
python-pip
|
|
|
|
RUN curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
|
|
RUN yum install -y nodejs
|
|
RUN npm set progress=false
|
|
|
|
WORKDIR "/awx"
|
|
|
|
ENTRYPOINT ["/bin/bash", "-c"]
|
|
CMD ["make sdist"]
|