Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 311 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 311 Bytes

minimal-sinatra

This is a minimal Sinatra app that I use to test Docker things. All that it does is echo the git commit that it's currently running.

To build the Docker image:

docker build -t minimal-sinatra .

To run it:

docker run -d -p 4567:4567 minimal-sinatra