From 0f555693f71bec5b2b64f53ed707d8888b214376 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Mon, 16 Oct 2023 17:52:35 -0700 Subject: [PATCH] Fix AutoGPT Docker build --- autogpts/autogpt/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogpts/autogpt/Dockerfile b/autogpts/autogpt/Dockerfile index cd1ef6bd..7121c691 100644 --- a/autogpts/autogpt/Dockerfile +++ b/autogpts/autogpt/Dockerfile @@ -36,12 +36,12 @@ CMD [] # dev build -> include everything FROM autogpt-base as autogpt-dev -RUN poetry install --no-root --without benchmark +RUN poetry install --no-root ONBUILD COPY . ./ # release build -> include bare minimum FROM autogpt-base as autogpt-release -RUN poetry install --no-root --without dev,benchmark +RUN poetry install --no-root --without dev ONBUILD COPY autogpt/ ./autogpt ONBUILD COPY scripts/ ./scripts ONBUILD COPY plugins/ ./plugins