https://github.com/gtramontina/docker-flow-bin
An image for https://github.com/flowtype/flow-bin
https://github.com/gtramontina/docker-flow-bin
docker docker-image flow-bin git node
Last synced: 2 months ago
JSON representation
An image for https://github.com/flowtype/flow-bin
- Host: GitHub
- URL: https://github.com/gtramontina/docker-flow-bin
- Owner: gtramontina
- Created: 2018-07-12T03:03:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2026-04-03T21:27:16.000Z (3 months ago)
- Last Synced: 2026-04-03T23:21:28.012Z (3 months ago)
- Topics: docker, docker-image, flow-bin, git, node
- Language: Makefile
- Size: 30.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Docker image for flow-bin
---
#### _Running:_
```sh
$ docker run --rm gtramontina/flow-bin:
```
**Note 1**: You'll need to mount your project in the container (`-v`). The example below mounts the current directory as `/app` in the container and sets it as the working directory (`-w`).
```sh
$ docker run --rm \
-w /app \
-v $(pwd):/app \
gtramontina/flow-bin:
```
---
#### _Developing:_
```sh
$ make build # Builds a new image
$ make test # Runs/tests the image
$ make push # Pushes the image up
$ make clean # Removes any generated artifacts
$ make clobber # Removes artifacts and generated images
```
---
🐳