docker-flow-bin

An image for https://github.com/flowtype/flow-bin

Stars
0

Running:

$ docker run --rm gtramontina/flow-bin:<version>

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).

$ docker run --rm \
  -w /app \
  -v $(pwd):/app \
  gtramontina/flow-bin:<version>

Developing:

$ 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