A container for running Racket applications
To start a REPL simply:
make replOr long-hand:
docker run -it --rm -v $(pwd):/var/app sleepyfox/racketTo run a racket application of your own in the container. Filename must be relative to current directory:
make file src=_my_app.rktOr long-hand:
docker run -it --rm -v $(pwd):/var/app sleepyfox/racket _my_app_.rkt