mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 14:57:39 -02:30
Move installer roles into roles directory
Signed-off-by: Shane McDonald <me@shanemcd.com>
This commit is contained in:
21
installer/roles/image_build/files/Dockerfile.sdist
Normal file
21
installer/roles/image_build/files/Dockerfile.sdist
Normal file
@@ -0,0 +1,21 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user