Skip to content

Commit ebd7d89

Browse files
junseon-yooclaude
andcommitted
fix(ci): don't ignore docker-context/ so Dockerfile COPY works
The .dockerignore was excluding docker-context/, but the CI pipeline creates docker-context/plugin/ after unzipping the plugin ZIP and the Dockerfile COPYs from that path. Buildx was failing with: failed to calculate checksum of ref ...: "/docker-context/plugin": not found Also removed gradle/wrapper/gradle-wrapper.jar from .dockerignore — it's harmless in the image but there's no reason to block it. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
1 parent cee3b83 commit ebd7d89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.dockerignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ build/classes/
88
build/resources/
99
build/generated/
1010
!build/distributions/
11-
docker-context/
12-
gradle/wrapper/gradle-wrapper.jar
11+
# docker-context/plugin/ is created by the CI pipeline and consumed
12+
# by the Dockerfile — must NOT be ignored.
1313
*.iml

0 commit comments

Comments
 (0)