From 6458211f1259acb53d40cb6a3bc44cfe1c903873 Mon Sep 17 00:00:00 2001 From: "n.nakhostin" Date: Tue, 9 Sep 2025 14:56:50 +0330 Subject: [PATCH] Update Dockerfile to Copy Web Assets - Modified the Dockerfile to change the COPY command for assets, now including the entire web assets directory instead of just the flags. 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 d56ccbc..474c2c9 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/assets/flags ./assets/flags +COPY --from=go-builder /app/web/assets ./assets EXPOSE 80