diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..85adb83a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM python:3.10 + +WORKDIR /app + +COPY . . + +RUN python3 -m venv venv + +RUN python3 -m pip install . + +# Run basic test suite +RUN python3 -m pip install pytest +RUN pytest + +# Run entire test suite +RUN python3 -m pip install tox +RUN tox