https://github.com/docker-hub-frolvlad/docker-alpine-fpc
The smallest Docker image with FPC (FreePascal compiler) (100MB)
https://github.com/docker-hub-frolvlad/docker-alpine-fpc
alpine docker-image fpc freepascal pascal
Last synced: about 2 months ago
JSON representation
The smallest Docker image with FPC (FreePascal compiler) (100MB)
- Host: GitHub
- URL: https://github.com/docker-hub-frolvlad/docker-alpine-fpc
- Owner: Docker-Hub-frolvlad
- License: mit
- Created: 2015-04-06T11:51:50.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-04-06T21:01:17.000Z (3 months ago)
- Last Synced: 2025-04-13T22:04:05.999Z (3 months ago)
- Topics: alpine, docker-image, fpc, freepascal, pascal
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/frolvlad/alpine-fpc/
- Size: 24.4 KB
- Stars: 18
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://hub.docker.com/r/frolvlad/alpine-fpc/)
[](https://hub.docker.com/r/frolvlad/alpine-fpc/)FreePascal Compiler (fpc) Docker image
======================================This image is based on Alpine Linux image, which is only a 5MB image, and contains
[FreePascal Compiler](http://www.freepascal.org/).`slim` (`master` branch) download image size is:
[](http://microbadger.com/images/frolvlad/alpine-fpc:slim "Get your own image badge on microbadger.com")
`cleaned` (`latest` tag) download image size is:
[](http://microbadger.com/images/frolvlad/alpine-fpc:cleaned "Get your own image badge on microbadger.com")
`full` download image size is:
[](http://microbadger.com/images/frolvlad/alpine-fpc:full "Get your own image badge on microbadger.com")
Usage Example
-------------```bash
$ 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'!