From a69fbf33d9e927bed829edb0118551f21e20bdd8 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Thu, 1 Dec 2022 03:13:33 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e74343d..d4064de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]