Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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