2017-08-16 22:31:15 -04:00

15 lines
279 B
Docker

ARG TAG=latest
FROM gcr.io/ansible-tower-engineering/awx_devel:$TAG
# For UI tests
RUN yum install -y bzip2 gcc-c++
RUN npm set progress=false
WORKDIR "/awx_devel"
ADD tools/docker-compose/unit-tests/entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]