mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 02:46:53 +00:00
Allow overriding clearml web git url on build (#122)
* add server root url * [Feature Request] Add possibility to override clearml web git url Co-authored-by: Zied ANDOLSI <zandolsi@prophesee.ai>
This commit is contained in:
parent
124684f53f
commit
5c1e419eb5
@ -1,9 +1,11 @@
|
||||
FROM centos/nodejs-12-centos7 AS webapp
|
||||
|
||||
ARG CLEARML_WEB_GIT_URL=https://github.com/allegroai/clearml-web.git
|
||||
|
||||
USER root
|
||||
WORKDIR /opt
|
||||
|
||||
RUN git clone https://github.com/allegroai/clearml-web.git
|
||||
RUN git clone ${CLEARML_WEB_GIT_URL} clearml-web
|
||||
RUN mv clearml-web /opt/open-webapp
|
||||
COPY --chmod=744 docker/build/internal_files/build_webapp.sh /tmp/internal_files/
|
||||
RUN /bin/bash -c '/tmp/internal_files/build_webapp.sh'
|
||||
|
Loading…
Reference in New Issue
Block a user