Skip to content

Instantly share code, notes, and snippets.

@onjin
Created January 10, 2018 10:00
Show Gist options
  • Save onjin/1b78a9b7b13043646c031ffa986e889f to your computer and use it in GitHub Desktop.
Save onjin/1b78a9b7b13043646c031ffa986e889f to your computer and use it in GitHub Desktop.
bash script to run pony language compiler using docker
#!/bin/bash
# run pony compiller using docker
# requires realpath programm - apt-get install realpath
path=$(realpath "$@")
/usr/bin/docker run --rm -v ${path}:/src/main ponylang/ponyc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment