https://github.com/codewars/purescript
Container image for PureScript
https://github.com/codewars/purescript
code-runner code-runner-image
Last synced: 10 months ago
JSON representation
Container image for PureScript
- Host: GitHub
- URL: https://github.com/codewars/purescript
- Owner: codewars
- License: mit
- Created: 2022-09-08T05:42:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-27T21:08:54.000Z (almost 3 years ago)
- Last Synced: 2025-01-10T05:36:02.185Z (12 months ago)
- Topics: code-runner, code-runner-image
- Language: PureScript
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# purescript
Container image for PureScript
## Usage
```bash
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
```bash
docker build -t ghcr.io/codewars/purescript:latest .
```