Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 398 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 398 Bytes

purescript

Container image for PureScript

Usage

W=/workspace
# Create container
C=$(docker container create --rm -w $W ghcr.io/codewars/purescript:latest spago test)

# Copy files from the examples directory
docker container cp ./examples/passing/. $C:$W

# Start
docker container start --attach $C

Building

docker build -t ghcr.io/codewars/purescript:latest .