From 3a77af8a222d6241a9fe167c7543c46df6f83037 Mon Sep 17 00:00:00 2001 From: tobitege <10787084+tobitege@users.noreply.github.com> Date: Thu, 15 Aug 2024 03:46:56 +0200 Subject: [PATCH] copy manifest file into container (#3396) --- containers/app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/app/Dockerfile b/containers/app/Dockerfile index 36ed2fbf06..b0ba933a5a 100644 --- a/containers/app/Dockerfile +++ b/containers/app/Dockerfile @@ -73,11 +73,11 @@ COPY --chown=opendevin:app --chmod=770 ./agenthub ./agenthub COPY --chown=opendevin:app --chmod=770 ./pyproject.toml ./pyproject.toml COPY --chown=opendevin:app --chmod=770 ./poetry.lock ./poetry.lock COPY --chown=opendevin:app --chmod=770 ./README.md ./README.md +COPY --chown=opendevin:app --chmod=770 ./MANIFEST.in ./MANIFEST.in RUN python opendevin/core/download.py # No-op to download assets RUN chown -R opendevin:app /app/logs && chmod -R 770 /app/logs # This gets created by the download.py script - COPY --chown=opendevin:app --chmod=770 --from=frontend-builder /app/dist ./frontend/dist COPY --chown=opendevin:app --chmod=770 ./containers/app/entrypoint.sh /app/entrypoint.sh