mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 09:51:09 +03:00
15 lines
279 B
Docker
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"]
|