From 8424c94becefd1a8307b20858ba45175c92279e4 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Sat, 31 Dec 2022 14:56:16 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e6fcb16..8155b79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,6 @@ WORKDIR /app COPY . . -RUN pip install --upgrade pip -RUN pip install build -RUN python -m build -RUN pip install dist/*.whl +RUN pip install --upgrade pip && pip install build && python -m build && pip install dist/*.whl ENTRYPOINT ["octosuite"]