blob: 4e5a3c93e57c3f110d251139ed6fca04b21764e2 [file]
FROM apache/hive-dev-box:latest
USER root
COPY tools/install_executor /tools/
RUN /tools/install_executor
COPY tools/install_executor2 /tools/
RUN /tools/install_executor2 ${UID}
COPY tools/install_executor3 /tools/
ARG UID=1000
RUN /tools/install_executor3 ${UID}
COPY etc/* /etc/
COPY bin/* /bin/
WORKDIR /home/jenkins
USER jenkins
COPY tools/docker_entrypoint.executor /.entrypoint
ENTRYPOINT ["/.entrypoint"]
CMD ["bash"]