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
Shane McDonald 0970726fa6 Don't pre-build UI deps for unit tests
I know, this sucks. I spent all day trying to get to the bottom of the CI failures that started happening the other day with no luck.

There is something going on with how we were moving the node_modules directory into the source tree from the pre-built location in /tmp. This was working, but then it broke. I hope to cycle back on this sometime next week if I have the time.
2017-03-09 18:54:24 -05:00

12 lines
203 B
Docker

FROM gcr.io/ansible-tower-engineering/tower_devel:latest
# For UI tests
RUN yum install -y bzip2 gcc-c++
RUN npm set progress=false
WORKDIR "/tower_devel"
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["bash"]