Update Dockerfile

This commit is contained in:
Richard Mwewa
2022-12-01 03:13:33 +02:00
committed by GitHub
parent 227fcd0482
commit a69fbf33d9

View File

@@ -6,7 +6,9 @@ WORKDIR /app
COPY . .
RUN python setup.py sdist bdist_wheel
RUN pip install --upgrade pip
RUN pip install build
RUN python -m build
RUN pip install dist/*.whl
ENTRYPOINT ["octosuite"]