pull/456/head
nuest 2018-10-29 13:38:52 +01:00
rodzic 3cba852438
commit 849b3f9bf9
2 zmienionych plików z 5 dodań i 3 usunięć

2
.gitignore vendored
Wyświetl plik

@ -28,3 +28,5 @@ test_file_text.txt
# Untracked artifacts from the conda script
repo2docker/buildpacks/conda/environment.py-3.5.yml
repo2docker/buildpacks/conda/environment.py-3.6.yml
\.vscode/

Wyświetl plik

@ -332,7 +332,7 @@ class BuildPack:
An ordered list of executable scripts to execute after build.
Is run as a non-root user, and must be executable. Used for performing
build time steps that can not be perfomed with standard tools.
build time steps that can not be performed with standard tools.
The scripts should be as deterministic as possible - running it twice
should not produce different results!
@ -341,12 +341,12 @@ class BuildPack:
def get_start_script(self):
"""
The path to a script to be executated at container start up.
The path to a script to be executed at container start up.
This script is added as the `ENTRYPOINT` to the container.
It is run as a non-root user, and must be executable. Used for performing
run time steps that can not be perfomed with standard tools. For example
run time steps that can not be performed with standard tools. For example
setting environment variables for your repository.
The script should be as deterministic as possible - running it twice