From 44d0f57082c28073326782651221c256bfe8c744 Mon Sep 17 00:00:00 2001 From: "n.nakhostin" Date: Tue, 9 Sep 2025 16:03:13 +0330 Subject: [PATCH] Update Dockerfile to Correct Asset Copy Path - Modified the Dockerfile to change the COPY command for web assets, ensuring the correct path is used to include assets from the cmd/web directory. This adjustment improves the organization and accessibility of web-related assets within the application. --- cmd/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/web/Dockerfile b/cmd/web/Dockerfile index 474c2c9..08084cd 100644 --- a/cmd/web/Dockerfile +++ b/cmd/web/Dockerfile @@ -16,7 +16,7 @@ RUN apk --no-cache add busybox-suid curl rsync tzdata tcpdump tree ca-certificat WORKDIR /app COPY --from=go-builder /app/web-build . -COPY --from=go-builder /app/web/assets ./assets +COPY --from=go-builder /app/cmd/web/assets ./assets EXPOSE 80