Merge pull request #4 from 0xbharath/master

Added Dockerfile
This commit is contained in:
Richard Mwewa
2022-10-24 17:07:05 +02:00
committed by GitHub

14
Dockerfile Normal file
View File

@@ -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"]