This repository contains all code required to run a QBasic program as an OpenWhisk action.
- Build the Docker image:
docker build --no-cache -t <yourid>/morse .
- Publish it to DockerHub:
docker login; docker push "<yourid>/morse"
- Create an OpenWhisk action:
wsk action create morse --docker "<yourid>/morse"
- Run it:
wsk action invoke -br morse -p input "les sanglots longs des violons de l'automne"
You can find a blog post about this project here.