Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T11:55:34.000Z (about 1 year ago)
- Last Synced: 2024-04-20T20:54:25.975Z (9 months ago)
- Topics: alpine, docker-image, fpc, freepascal, pascal
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/frolvlad/alpine-fpc/
- Size: 21.5 KB
- Stars: 19
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Docker Stars](https://img.shields.io/docker/stars/frolvlad/alpine-fpc.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-fpc/)
[![Docker Pulls](https://img.shields.io/docker/pulls/frolvlad/alpine-fpc.svg?style=flat-square)](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:
[![](https://images.microbadger.com/badges/image/frolvlad/alpine-fpc:slim.svg)](http://microbadger.com/images/frolvlad/alpine-fpc:slim "Get your own image badge on microbadger.com")
`cleaned` (`latest` tag) download image size is:
[![](https://images.microbadger.com/badges/image/frolvlad/alpine-fpc:cleaned.svg)](http://microbadger.com/images/frolvlad/alpine-fpc:cleaned "Get your own image badge on microbadger.com")
`full` download image size is:
[![](https://images.microbadger.com/badges/image/frolvlad/alpine-fpc:full.svg)](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'!