kopia lustrzana https://github.com/jupyterhub/repo2docker
Merge pull request #181 from nmih/master
Fix indentation causing only last line of apt.txt to be parsedpull/183/head
commit
09845ea5ee
|
@ -443,7 +443,7 @@ class BaseImage(BuildPack):
|
|||
if not re.match(r"^[a-z0-9.+-]+", package):
|
||||
raise ValueError("Found invalid package name {} in "
|
||||
"apt.txt".format(package))
|
||||
extra_apt_packages.append(package)
|
||||
extra_apt_packages.append(package)
|
||||
|
||||
assemble_scripts.append((
|
||||
'root',
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
# testing to skip comments in this file
|
||||
|
||||
gfortran
|
||||
|
||||
# testing to see if all packages get installed
|
||||
unp
|
||||
byacc
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
which gfortran
|
||||
which unp
|
||||
which byacc
|
||||
|
|
Ładowanie…
Reference in New Issue