Sign inSign up

mverleg/pastacode

By mverleg

Updated about 4 years ago

Image
0

1.5K

mverleg/pastacode repository overview

Pastacode

Programming language meant for delivering results. Batteries included, convention over configuration, inspired by many languages in widespread use. Free!

Documentation

https://pastacode.top/docs/using/docker.html#use-docker

Run

  • 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'
    

Build

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

Tag summary

Content type

Image

Digest

sha256:d0fc81c6b

Size

3.4 MB

Last updated

about 4 years ago

docker pull mverleg/pastacode