Skip to content

Commit e72f073

Browse files
Fix path in Dockerfile for www directory copy operation (#87)
* Fix path in Dockerfile for `www` directory copy operation * Correct relative path for `www` directory in Dockerfile copy operation
1 parent 103178a commit e72f073

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ RUN addgroup -S appgroup && adduser -S appuser -G appgroup
1111
WORKDIR /app/
1212
COPY --from=build /build/target/classes/ /app/
1313
COPY --from=build /build/target/dependency/ /app/dependencies/
14-
COPY /www/ /www/
14+
COPY www/ ./www/
1515
USER appuser
1616
ENTRYPOINT ["java", "-classpath", "/app:/app/dependencies/*", "org.example.App"]

0 commit comments

Comments
 (0)