Spaces:
Sleeping
Sleeping
Commit
·
b5545a8
1
Parent(s):
95feba1
restored entrypoint copy
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -58,10 +58,11 @@ RUN echo "---> Export W&B"
|
|
58 |
ARG WANDB_API_KEY
|
59 |
RUN echo "WANDB_API_KEY=${WANDB_API_KEY}" >> /${HOME}/.Renviron
|
60 |
|
|
|
61 |
RUN chmod u+x /usr/local/bin/entrypoint-rstudio.sh
|
62 |
ENTRYPOINT [ "/usr/local/bin/entrypoint-rstudio.sh" ]
|
63 |
|
64 |
-
RUN echo "-->
|
65 |
# Rewrite the miniconda path environment in case it has been redefined in the compose file
|
66 |
RUN echo "RETICULATE_MINICONDA_PATH=${RETICULATE_MINICONDA_PATH}" >> ${HOME}/.Renviron
|
67 |
|
|
|
58 |
ARG WANDB_API_KEY
|
59 |
RUN echo "WANDB_API_KEY=${WANDB_API_KEY}" >> /${HOME}/.Renviron
|
60 |
|
61 |
+
COPY docker/entrypoint-rstudio.sh /usr/local/bin
|
62 |
RUN chmod u+x /usr/local/bin/entrypoint-rstudio.sh
|
63 |
ENTRYPOINT [ "/usr/local/bin/entrypoint-rstudio.sh" ]
|
64 |
|
65 |
+
RUN echo "--> rewruie miniconda path"
|
66 |
# Rewrite the miniconda path environment in case it has been redefined in the compose file
|
67 |
RUN echo "RETICULATE_MINICONDA_PATH=${RETICULATE_MINICONDA_PATH}" >> ${HOME}/.Renviron
|
68 |
|