Fix typo in word "environment"

pull/33/head
Jean-Rémi Beaudoin 2021-12-07 15:39:32 -05:00
rodzic 9ee23b3959
commit 49ed7ca1a6
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -52,9 +52,9 @@ def create_dockerfile(base_os: str,
dockerfile += "LABEL Author=\"{}\"\n".format(author)
dockerfile += "LABEL Title=\"{}\"\n\n".format(title)
dockerfile += "# Enviorment variables\n"
for enviorment_variable in env:
dockerfile += "ENV {}\n".format(enviorment_variable)
dockerfile += "# Environment variables\n"
for environment_variable in env:
dockerfile += "ENV {}\n".format(environment_variable)
dockerfile += "\n"
dockerfile += "# Install dependencies\n"