diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bc253f7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3-alpine + +RUN apk add --no-cache bash + +RUN pip install pep8 +RUN pip install flake8 + +CMD ["/bin/bash"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..58df8e4 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +CI: Python with Test Tools +--- + +Internal image for Continuous Integration purposes, not for general use. + +Basic Python (Alpine) image with several useful testing utilities.