Skip to content

Instantly share code, notes, and snippets.

@bradgessler
Created March 18, 2015 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradgessler/82cc7cecae6137e1ec2a to your computer and use it in GitHub Desktop.
Save bradgessler/82cc7cecae6137e1ec2a to your computer and use it in GitHub Desktop.
Fast bundler
#!/usr/bin/env bash
export IMAGE_NAME=my_app
CONTAINER_ID=$(docker run -d $IMAGE_NAME bundle $@)
docker logs -f $CONTAINER_ID
docker commit $CONTAINER_ID $IMAGE_NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment