Merge pull request #239 from jfharden/fix-dockerised-version

Mount only the koans directory, not the whole project
This commit is contained in:
Felipe Seré
2019-10-12 11:06:41 +02:00
committed by GitHub

View File

@@ -1,2 +1,4 @@
#!/bin/sh #!/bin/sh -e
docker build -t elixir-koans . && docker run --rm -v `pwd`:/elixir-koans -ti elixir-koans
docker build -t elixir-koans .
docker run --rm -v `pwd`/lib/koans:/elixir-koans/lib/koans -ti elixir-koans