Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alexmanno/docker-vala
- Owner: alexmanno
- Created: 2017-07-13T06:44:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-13T07:08:05.000Z (over 7 years ago)
- Last Synced: 2024-10-30T08:21:37.413Z (about 2 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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