Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/alexmanno/docker-vala

A Vala docker image
https://github.com/alexmanno/docker-vala

Last synced: 6 days ago
JSON representation

A Vala docker image

Awesome Lists containing this project

README

        

# alexmanno/docker-vala

A Docker image useful for compile vala code

## Usage

Pull Docker image from repository

```sh
docker pull alexmanno/valac
```

Compile your code

```sh
docker run -v `pwd`:/opt/project alexmanno/valac example.vala -o example
```

- -v flag is used for bind your current directory to the docker container
- example.vala is the source code written in vala located in your current directory
- -o flag force the name of output executable file