2021-08-05 16:22:56 +00:00
|
|
|
FROM ubuntu:18.04
|
|
|
|
|
|
|
|
USER root
|
|
|
|
WORKDIR /root
|
|
|
|
|
|
|
|
ENV LC_ALL=en_US.UTF-8
|
|
|
|
ENV LANG=en_US.UTF-8
|
|
|
|
ENV LANGUAGE=en_US.UTF-8
|
|
|
|
ENV PYTHONIOENCODING=UTF-8
|
|
|
|
|
2024-02-29 12:20:54 +00:00
|
|
|
COPY ./setup.sh /root/setup.sh
|
2021-08-05 16:22:56 +00:00
|
|
|
RUN /root/setup.sh
|
|
|
|
|
|
|
|
COPY ./setup_gcp.sh /root/setup_gcp.sh
|
2024-02-29 12:20:54 +00:00
|
|
|
RUN chmod +x /root/setup_gcp.sh && /root/setup_gcp.sh
|
2021-08-05 16:22:56 +00:00
|
|
|
|
2024-02-29 12:20:54 +00:00
|
|
|
COPY ./entrypoint.sh /root/entrypoint.sh
|
2021-08-05 16:22:56 +00:00
|
|
|
COPY ./provider_entrypoint.sh /root/provider_entrypoint.sh
|
2024-02-29 12:20:54 +00:00
|
|
|
COPY ./k8s_glue_example.py /root/k8s_glue_example.py
|
2021-08-05 16:22:56 +00:00
|
|
|
COPY ./clearml.conf /root/clearml.conf
|
|
|
|
|
|
|
|
ENTRYPOINT ["/root/entrypoint.sh"]
|