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 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-27T19:13:13.000Z (3 months ago)
- Last Synced: 2025-03-27T20:24:40.853Z (3 months ago)
- Topics: docker, docker-image, flow-bin, git, node
- Language: Makefile
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Docker image forflow-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
```---
🐳