Skip to content

Commit

Permalink
Merge pull request #26 from butla/faster_tests
Browse files Browse the repository at this point in the history
Faster tests
  • Loading branch information
AndreLouisCaron committed Oct 25, 2018
2 parents 05bde08 + b01a5d1 commit bf19f7d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/containers/hello/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-

FROM python:3.6-alpine
# Python won't pick up SIGTERM (the default) and will have to be killed with SIGKILL
# from Docker after a timeout. But it will pick up SIGINT and stop immediately
# as if touched by Ctrl+c.
STOPSIGNAL SIGINT

CMD [ "python", "-m", "http.server", "80" ]

0 comments on commit bf19f7d

Please sign in to comment.