Skip to content

Commit 95a3b5c

Browse files
Append slash to copy destination in adService Dockerfile (#1530)
As described in Docker docs: If multiple <src> resources are specified, either directly or due to the use of a wildcard, then <dest> must be a directory, and it must end with a slash /. Having no slash at the end of this command may make Docker build fail under certain circumstances. Co-authored-by: Austin Parker <austin@ap2.io>
1 parent e5c45b9 commit 95a3b5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM eclipse-temurin:21-jdk as builder
66

77
WORKDIR /usr/src/app/
88

9-
COPY ./src/adservice/gradlew* ./src/adservice/settings.gradle* ./src/adservice/build.gradle .
9+
COPY ./src/adservice/gradlew* ./src/adservice/settings.gradle* ./src/adservice/build.gradle ./
1010
COPY ./src/adservice/gradle ./gradle
1111

1212
RUN ./gradlew

0 commit comments

Comments
 (0)