blob: 66155efb54e3d990f27ef41322d0d01bbcbdaafa [file] [log] [blame]
FROM kgyrtkirk/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"]