271 lines
7.9 KiB
Django/Jinja
271 lines
7.9 KiB
Django/Jinja
{% if build_dev|default(False)|bool %}
|
|
### This file is generated from
|
|
### installer/roles/image_build/templates/Dockerfile.j2
|
|
###
|
|
### DO NOT EDIT
|
|
###
|
|
{% else %}
|
|
{% set build_dev = False %}
|
|
{% endif %}
|
|
|
|
# Locations - set globally to be used across stages
|
|
ARG COLLECTION_BASE="/var/lib/awx/vendor/awx_ansible_collections"
|
|
|
|
# Build container
|
|
FROM centos:8 as builder
|
|
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
USER root
|
|
|
|
# Install build dependencies
|
|
RUN dnf -y module enable 'postgresql:12'
|
|
RUN dnf -y update && \
|
|
dnf -y install epel-release 'dnf-command(config-manager)' && \
|
|
dnf module -y enable 'postgresql:12' && \
|
|
dnf config-manager --set-enabled powertools && \
|
|
dnf -y install ansible \
|
|
gcc \
|
|
gcc-c++ \
|
|
git-core \
|
|
glibc-langpack-en \
|
|
libcurl-devel \
|
|
libffi-devel \
|
|
libtool-ltdl-devel \
|
|
make \
|
|
nodejs \
|
|
nss \
|
|
openldap-devel \
|
|
patch \
|
|
@postgresql:12 \
|
|
postgresql-devel \
|
|
python3-devel \
|
|
python3-pip \
|
|
python3-psycopg2 \
|
|
python3-setuptools \
|
|
swig \
|
|
unzip \
|
|
xmlsec1-devel \
|
|
xmlsec1-openssl-devel
|
|
|
|
RUN python3 -m ensurepip && pip3 install "virtualenv < 20"
|
|
|
|
# Install & build requirements
|
|
ADD Makefile /tmp/Makefile
|
|
RUN mkdir /tmp/requirements
|
|
ADD requirements/requirements_ansible.txt \
|
|
requirements/requirements_ansible_uninstall.txt \
|
|
requirements/requirements_ansible_git.txt \
|
|
requirements/requirements.txt \
|
|
requirements/requirements_tower_uninstall.txt \
|
|
requirements/requirements_git.txt \
|
|
requirements/collections_requirements.yml \
|
|
/tmp/requirements/
|
|
|
|
RUN cd /tmp && make requirements_awx requirements_ansible_py3
|
|
RUN cd /tmp && make requirements_collections
|
|
|
|
{% if build_dev|bool %}
|
|
ADD requirements/requirements_dev.txt /tmp/requirements
|
|
RUN cd /tmp && make requirements_awx_dev requirements_ansible_dev
|
|
{% endif %}
|
|
|
|
{% if not build_dev|bool %}
|
|
# Use the distro provided npm to bootstrap our required version of node
|
|
RUN npm install -g n && n 14.15.1 && dnf remove -y nodejs
|
|
|
|
# Copy source into builder, build sdist, install it into awx venv
|
|
COPY . /tmp/src/
|
|
WORKDIR /tmp/src/
|
|
RUN make sdist && \
|
|
/var/lib/awx/venv/awx/bin/pip install dist/awx-$(cat VERSION).tar.gz
|
|
{% endif %}
|
|
|
|
# Final container(s)
|
|
FROM centos:8
|
|
|
|
ARG COLLECTION_BASE
|
|
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
USER root
|
|
|
|
# Install runtime requirements
|
|
RUN dnf -y module enable 'postgresql:12'
|
|
RUN dnf -y update && \
|
|
dnf -y install epel-release 'dnf-command(config-manager)' && \
|
|
dnf module -y enable 'postgresql:12' && \
|
|
dnf config-manager --set-enabled powertools && \
|
|
dnf -y install acl \
|
|
ansible \
|
|
bubblewrap \
|
|
git-core \
|
|
git-lfs \
|
|
glibc-langpack-en \
|
|
krb5-workstation \
|
|
libcgroup-tools \
|
|
nginx \
|
|
@postgresql:12 \
|
|
python3-devel \
|
|
python3-libselinux \
|
|
python3-pip \
|
|
python3-psycopg2 \
|
|
python3-setuptools \
|
|
rsync \
|
|
subversion \
|
|
sudo \
|
|
vim-minimal \
|
|
which \
|
|
unzip \
|
|
xmlsec1-openssl && \
|
|
dnf -y install centos-release-stream && dnf -y install "rsyslog >= 8.1911.0" && dnf -y remove centos-release-stream && \
|
|
dnf -y clean all
|
|
|
|
# Install kubectl
|
|
RUN curl -L -o /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.17.8/bin/linux/{{ kubectl_architecture | default('amd64') }}/kubectl && \
|
|
chmod a+x /usr/bin/kubectl
|
|
|
|
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 && \
|
|
chmod 700 get_helm.sh && \
|
|
./get_helm.sh
|
|
|
|
# Install tini
|
|
RUN curl -L -o /usr/bin/tini https://github.com/krallin/tini/releases/download/v0.19.0/tini-{{ tini_architecture | default('amd64') }} && \
|
|
chmod +x /usr/bin/tini
|
|
|
|
RUN python3 -m ensurepip && pip3 install "virtualenv < 20" supervisor {% if build_dev|bool %}flake8{% endif %}
|
|
|
|
RUN rm -rf /root/.cache && rm -rf /tmp/*
|
|
|
|
# Install OpenShift CLI
|
|
RUN cd /usr/local/bin && \
|
|
curl -L https://github.com/openshift/origin/releases/download/v3.11.0/openshift-origin-client-tools-v3.11.0-0cbc58b-linux-64bit.tar.gz | \
|
|
tar -xz --strip-components=1 --wildcards --no-anchored 'oc'
|
|
|
|
{% if build_dev|bool %}
|
|
# Install development/test requirements
|
|
RUN dnf -y install \
|
|
gdb \
|
|
gtk3 \
|
|
gettext \
|
|
alsa-lib \
|
|
libX11-xcb \
|
|
libXScrnSaver \
|
|
strace \
|
|
vim \
|
|
nmap-ncat \
|
|
nodejs \
|
|
nss \
|
|
make \
|
|
patch \
|
|
socat \
|
|
tmux \
|
|
wget \
|
|
diffutils \
|
|
unzip && \
|
|
npm install -g n && n 14.15.1 && dnf remove -y nodejs
|
|
|
|
# This package randomly fails to download.
|
|
# It is nice to have in the dev env, but not necessary.
|
|
# Add it back to the list above if the repo ever straighten up.
|
|
RUN dnf --enablerepo=debuginfo -y install python3-debuginfo || :
|
|
{% endif %}
|
|
|
|
# Copy app from builder
|
|
COPY --from=builder /var/lib/awx /var/lib/awx
|
|
|
|
{%if build_dev|bool %}
|
|
RUN openssl req -nodes -newkey rsa:2048 -keyout /etc/nginx/nginx.key -out /etc/nginx/nginx.csr \
|
|
-subj "/C=US/ST=North Carolina/L=Durham/O=Ansible/OU=AWX Development/CN=awx.localhost" && \
|
|
openssl x509 -req -days 365 -in /etc/nginx/nginx.csr -signkey /etc/nginx/nginx.key -out /etc/nginx/nginx.crt && \
|
|
chmod 640 /etc/nginx/nginx.{csr,key,crt}
|
|
{% else %}
|
|
RUN ln -s /var/lib/awx/venv/awx/bin/awx-manage /usr/bin/awx-manage
|
|
{% endif %}
|
|
|
|
# Create default awx rsyslog config
|
|
ADD installer/roles/image_build/files/rsyslog.conf /var/lib/awx/rsyslog/rsyslog.conf
|
|
|
|
## File mappings
|
|
{% if build_dev|bool %}
|
|
ADD tools/docker-compose/launch_awx.sh /usr/bin/launch_awx.sh
|
|
ADD tools/docker-compose/awx-manage /usr/local/bin/awx-manage
|
|
ADD tools/docker-compose/awx.egg-link /tmp/awx.egg-link
|
|
ADD tools/docker-compose/nginx.conf /etc/nginx/nginx.conf
|
|
ADD tools/docker-compose/nginx.vh.default.conf /etc/nginx/conf.d/nginx.vh.default.conf
|
|
ADD tools/docker-compose/start_tests.sh /start_tests.sh
|
|
ADD tools/docker-compose/bootstrap_development.sh /usr/bin/bootstrap_development.sh
|
|
ADD tools/docker-compose/entrypoint.sh /entrypoint.sh
|
|
ADD tools/scripts/awx-python /usr/bin/awx-python
|
|
{% else %}
|
|
ADD installer/roles/image_build/files/launch_awx.sh /usr/bin/launch_awx.sh
|
|
ADD installer/roles/image_build/files/launch_awx_task.sh /usr/bin/launch_awx_task.sh
|
|
ADD installer/roles/image_build/files/settings.py /etc/tower/settings.py
|
|
ADD installer/roles/image_build/files/supervisor.conf /etc/supervisord.conf
|
|
ADD installer/roles/image_build/files/supervisor_task.conf /etc/supervisord_task.conf
|
|
ADD tools/scripts/config-watcher /usr/bin/config-watcher
|
|
{% endif %}
|
|
|
|
# Pre-create things we need to access
|
|
RUN for dir in \
|
|
/var/lib/awx \
|
|
/var/lib/awx/rsyslog \
|
|
/var/lib/awx/rsyslog/conf.d \
|
|
/var/run/awx-rsyslog \
|
|
/var/log/tower \
|
|
/var/log/nginx \
|
|
/var/lib/postgresql \
|
|
/var/run/supervisor \
|
|
/var/lib/nginx ; \
|
|
do mkdir -m 0775 -p $dir ; chmod g+rw $dir ; chgrp root $dir ; done && \
|
|
for file in \
|
|
/etc/passwd ; \
|
|
do touch $file ; chmod g+rw $file ; chgrp root $file ; done
|
|
|
|
# Adjust any remaining permissions
|
|
RUN chmod u+s /usr/bin/bwrap ; \
|
|
chgrp -R root ${COLLECTION_BASE} ; \
|
|
chmod -R g+rw ${COLLECTION_BASE}
|
|
|
|
{% if build_dev|bool %}
|
|
RUN for dir in \
|
|
/var/lib/awx/venv \
|
|
/var/lib/awx/venv/awx/lib/python3.6 \
|
|
/var/lib/awx/projects \
|
|
/var/lib/awx/rsyslog \
|
|
/var/run/awx-rsyslog \
|
|
/.ansible \
|
|
/var/lib/awx/vendor ; \
|
|
do mkdir -m 0775 -p $dir ; chmod g+rw $dir ; chgrp root $dir ; done && \
|
|
for file in \
|
|
/var/run/nginx.pid \
|
|
/var/lib/awx/venv/awx/lib/python3.6/site-packages/awx.egg-link ; \
|
|
do touch $file ; chmod g+rw $file ; done
|
|
{% endif %}
|
|
|
|
{% if not build_dev|bool %}
|
|
RUN ln -sf /dev/stdout /var/log/nginx/access.log && \
|
|
ln -sf /dev/stderr /var/log/nginx/error.log
|
|
{% endif %}
|
|
|
|
ENV HOME="/var/lib/awx"
|
|
ENV PATH="/usr/pgsql-10/bin:${PATH}"
|
|
|
|
{% if build_dev|bool %}
|
|
EXPOSE 8043 8013 8080 22
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["/bin/bash"]
|
|
{% else %}
|
|
USER 1000
|
|
EXPOSE 8052
|
|
|
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
|
CMD /usr/bin/launch_awx.sh
|
|
VOLUME /var/lib/nginx
|
|
{% endif %}
|