diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e74343d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +# syntax=docker/dockerfile:1 + +FROM python:latest + +WORKDIR /app + +COPY . . + +RUN python setup.py sdist bdist_wheel +RUN pip install dist/*.whl + +ENTRYPOINT ["octosuite"] + +