16 lines
452 B
Docker
16 lines
452 B
Docker
# Locations - set globally to be used across stages
|
|
# Final container(s)
|
|
FROM centos:8
|
|
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
# Install runtime requirements
|
|
RUN dnf install -y python3 gcc python3-pip && \
|
|
/usr/bin/python3 -m venv extra-modules /var/lib/awx/my-venv/extra-modules
|
|
|
|
VOLUME /var/lib/awx/my-venv
|
|
|
|
CMD [ "/var/lib/awx/my-venv/extra-modules/bin/pip3", "install", "-r", "/tmp/extra-modules/requirements/txt" ]
|