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