Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 1.47 KB

README.md

File metadata and controls

33 lines (20 loc) · 1.47 KB

Docker Stars Docker Pulls

FreePascal Compiler (fpc) Docker image

This image is based on Alpine Linux image, which is only a 5MB image, and contains FreePascal Compiler.

slim (master branch) download image size is:

cleaned (latest tag) download image size is:

full download image size is:

Usage Example

$ echo "begin writeln('Hello World'); end." > qq.pas
$ docker run --rm -v `pwd`:/tmp frolvlad/alpine-fpc fpc /tmp/qq.pas

Once you have run these commands you will have qq executable in your current directory and if you execute it, you will get printed 'Hello World'!