Skip to content

Instantly share code, notes, and snippets.

@shmink
Created April 3, 2020 01:10
Build and run docker
echo "Building..."
docker build -t my-app:latest .
echo "\nRunning..."
docker run --rm -it -p80:4000 my-app:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment