misantamaria commited on
Commit
b5545a8
·
1 Parent(s): 95feba1

restored entrypoint copy

Browse files
Files changed (1) hide show
  1. 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 "--> rewrute miniconda path"
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