Skip to content

Commit 68a31b9

Browse files
authored
fix: remove reference to non-existent devcloud.yaml in Dockerfile (#25)
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.
1 parent 13b9c0e commit 68a31b9

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

docker/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ WORKDIR /app
2626
COPY --from=go-builder /devcloud /app/devcloud
2727
COPY --from=go-builder /codegen /app/codegen
2828
COPY --from=web-builder /app/web/out /app/web/out
29-
COPY devcloud.yaml /app/devcloud.yaml
3029
COPY smithy-models/ /app/smithy-models/
3130
COPY internal/codegen/templates/ /app/templates/
3231
COPY docker/entrypoint.sh /app/entrypoint.sh
@@ -36,4 +35,4 @@ EXPOSE 4747
3635
VOLUME /app/data
3736

3837
ENTRYPOINT ["/app/entrypoint.sh"]
39-
CMD ["/app/devcloud", "-config", "/app/devcloud.yaml"]
38+
CMD ["/app/devcloud"]

0 commit comments

Comments
 (0)