Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 415 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 415 Bytes

Dockerfile for Spry language

Usage

To use a pre-built image, just run:

$ docker run --rm -it thalesmg/spry

Welcome to interactive Spry!
An empty line will evaluate previous lines, so hit enter twice.
>>> echo "Hello World!"
>>>
Hello World!
nil
>>>

Building

To rebuild this image with another Spry commit hash:

$ docker build -t spry --build-arg SPRY_COMMIT_HASH=<NEW_HASH> .