https://github.com/mrsuh/docker-bison
https://github.com/mrsuh/docker-bison
bison docker docker-image php-bison-skeleton
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrsuh/docker-bison
- Owner: mrsuh
- License: mit
- Created: 2023-02-17T18:37:33.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T05:55:19.000Z (over 3 years ago)
- Last Synced: 2025-02-21T20:46:17.243Z (over 1 year ago)
- Topics: bison, docker, docker-image, php-bison-skeleton
- Language: Dockerfile
- Homepage: https://mrsuh.com/projects/php-bison-skeleton/
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Bison
Bison is a general-purpose GLR/LALR parser generator
[https://www.gnu.org/software/bison](https://www.gnu.org/software/bison)
This is the Git repo of the [Docker image for Bison](https://hub.docker.com/repository/docker/mrsuh/bison).
## How to use image
### Get Bison version
```bash
docker run -it --rm mrsuh/bison bison --version
```
### Generate parser from `parser.y` file
```bash
docker run -it --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp mrsuh/bison bison -o parser.java parser.y
```