From a6d6d8f57222f3530bab0c4a8b39995d2f9a4a89 Mon Sep 17 00:00:00 2001 From: Derek Ellis Date: Sat, 30 Mar 2024 16:47:48 -0400 Subject: [PATCH] Fix web distribution copy path --- web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index f16d38b..9c334c3 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -7,6 +7,6 @@ RUN gradle :web:jsBrowserDistribution FROM nginx:1.23.0 -COPY --from=builder /home/gradle/src/web/build/distributions /usr/share/nginx/html +COPY --from=builder /home/gradle/src/web/build/dist/js/productionExecutable /usr/share/nginx/html LABEL org.opencontainers.image.source=https://github.com/dellisd/reroute