Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 329 Bytes

README.MD

File metadata and controls

22 lines (16 loc) · 329 Bytes

Docker sample

Build image

docker build -t docker_sample .

Run built image

docker run -d -p 8080:8080 docker_sample
# and the server should start instantly
curl http://localhost:8080

Running unit tests

docker build -t docker_sample:test .
docker run --rm docker_sample:test