mirror of
https://github.com/clearml/clearml-agent
synced 2025-01-31 09:06:52 +00:00
a2758250b2
* Fix queue handling in K8sIntegration and k8s_glue_example.py * Update Dockerfile and k8s_glue_example.py * Add executable permission to provider_entrypoint.sh * ADJUST docker * Update clearml-agent version * ADDJUST stuff * ADJUST queue string handling * DELETE pip install from own repo
22 lines
513 B
Docker
22 lines
513 B
Docker
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
|
|
|
|
COPY ./setup.sh /root/setup.sh
|
|
RUN /root/setup.sh
|
|
|
|
COPY ./setup_gcp.sh /root/setup_gcp.sh
|
|
RUN chmod +x /root/setup_gcp.sh && /root/setup_gcp.sh
|
|
|
|
COPY ./entrypoint.sh /root/entrypoint.sh
|
|
COPY ./provider_entrypoint.sh /root/provider_entrypoint.sh
|
|
COPY ./k8s_glue_example.py /root/k8s_glue_example.py
|
|
COPY ./clearml.conf /root/clearml.conf
|
|
|
|
ENTRYPOINT ["/root/entrypoint.sh"] |