From 43a1557e7a15e90ab9e6f7cb9bfd08e79b75d398 Mon Sep 17 00:00:00 2001 From: Sung-Kyu Yoo Date: Sun, 19 Apr 2026 23:35:59 +0900 Subject: [PATCH] fix: remove reference to non-existent devcloud.yaml in Dockerfile The Dockerfile referenced devcloud.yaml which doesn't exist at the repo root. The app already falls back to embedded defaults when this file is absent, so remove the COPY and -config flag from CMD. --- docker/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 18c1056..fe34dc4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -26,7 +26,6 @@ WORKDIR /app COPY --from=go-builder /devcloud /app/devcloud COPY --from=go-builder /codegen /app/codegen COPY --from=web-builder /app/web/out /app/web/out -COPY devcloud.yaml /app/devcloud.yaml COPY smithy-models/ /app/smithy-models/ COPY internal/codegen/templates/ /app/templates/ COPY docker/entrypoint.sh /app/entrypoint.sh @@ -36,4 +35,4 @@ EXPOSE 4747 VOLUME /app/data ENTRYPOINT ["/app/entrypoint.sh"] -CMD ["/app/devcloud", "-config", "/app/devcloud.yaml"] +CMD ["/app/devcloud"]