1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 09:51:09 +03:00
awx/tools/docker-compose/unit-tests/Dockerfile
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"]