Programming language meant for delivering results. Batteries included, convention over configuration, inspired by many languages in widespread use. Free!
https://pastacode.top/docs/using/docker.html#use-docker
Go to the directory with your Pastacode source files (must have at least one main)
Run this command to execute the code:
docker run -v"$(pwd):/code" 'mverleg/pastacode:latest'
You can package your project in a Docker image using a Dockerfile like this:
FROM mverleg/pastacode:latest
COPY . /code
This image can then be built and ran using:
docker build -t my_pasta_project .
docker run my_pasta_project
Content type
Image
Digest
sha256:d0fc81c6b…
Size
3.4 MB
Last updated
about 4 years ago
docker pull mverleg/pastacode