From 0c8f2cfd1c3522761011148adfdeff515c6e7b6c Mon Sep 17 00:00:00 2001 From: merwanehamadi Date: Tue, 13 Jun 2023 12:18:39 -0700 Subject: [PATCH] Fix autogpt docker image not working because missing prompt_settings (#4680) Co-authored-by: Richard Beales --- .dockerignore | 1 + Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index 9ac55109..fef46549 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,6 +2,7 @@ *.template *.yaml *.yml +!prompt_settings.yaml *.md *.png diff --git a/Dockerfile b/Dockerfile index 68be43d5..a31c78ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,6 +40,7 @@ WORKDIR /app ONBUILD COPY autogpt/ ./autogpt ONBUILD COPY scripts/ ./scripts ONBUILD COPY plugins/ ./plugins +ONBUILD COPY prompt_settings.yaml ./prompt_settings.yaml ONBUILD RUN mkdir ./data FROM autogpt-${BUILD_TYPE} AS auto-gpt