Closes #605: Add test files
This commit is contained in:
parent
fcb6a56e02
commit
ca8e30a45e
|
|
@ -0,0 +1 @@
|
|||
Hello World!
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
#!/usr/bin/perl
|
||||
print "Hello World!";
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
image="$1"
|
||||
dirTest="$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
||||
dirContainer='/usr/src/perl'
|
||||
|
||||
docker run -it --rm -v "$dirTest":"$dirContainer" -w "$dirContainer" "$image" perl hello-world.pl
|
||||
Loading…
Reference in New Issue