kopia lustrzana https://github.com/jupyterhub/repo2docker
split post build script command in Docker file
`RUN chmod +x postBuild && ./postBuild` causes `./postBuild: Text file busy` error with Docker version 1.13.1pull/294/head
rodzic
00b40edeb4
commit
20f9c7d7cc
|
@ -109,7 +109,8 @@ USER ${NB_USER}
|
|||
# Make sure that postBuild scripts are marked executable before executing them
|
||||
{% if post_build_scripts -%}
|
||||
{% for s in post_build_scripts -%}
|
||||
RUN chmod +x {{ s }} && ./{{ s }}
|
||||
RUN chmod +x {{ s }}
|
||||
RUN ./{{ s }}
|
||||
{% endfor %}
|
||||
{% endif -%}
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue