From 849b3f9bf957216730cb625531fe0509d69810e2 Mon Sep 17 00:00:00 2001 From: nuest Date: Mon, 29 Oct 2018 13:38:52 +0100 Subject: [PATCH] fix some typos --- .gitignore | 2 ++ repo2docker/buildpacks/base.py | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b88fd663..166646d1 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ diff --git a/repo2docker/buildpacks/base.py b/repo2docker/buildpacks/base.py index 8d5991af..a2325411 100644 --- a/repo2docker/buildpacks/base.py +++ b/repo2docker/buildpacks/base.py @@ -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