We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f20d2 commit 97af696Copy full SHA for 97af696
repository-services/isajson-ena/Dockerfile
@@ -2,10 +2,10 @@
2
FROM gradle:jdk17 AS builder
3
4
WORKDIR /app
5
-# Copy receipt directory first (dependency)
6
-COPY receipt /app/receipt
7
-# Copy isajson-ena directory
8
-COPY isajson-ena /app/isajson-ena
+# Copy everything from context
+# IMPORTANT: Build context must be repository-services/ (parent directory), not isajson-ena/
+# This allows access to both receipt/ and isajson-ena/ directories
+COPY . .
9
10
ARG GPR_USER
11
ARG GPR_TOKEN
0 commit comments