From a8a08b33f6fd5207a67b4fd66ba4d8c3ffdf6a7f Mon Sep 17 00:00:00 2001 From: "n.nakhostin" Date: Tue, 9 Sep 2025 14:49:06 +0330 Subject: [PATCH] Update Dockerfile to Include Flags Assets - Added a new COPY command in the Dockerfile to include SVG flag assets from the go-builder stage, enhancing the application's asset management and visual representation of country flags. --- cmd/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/web/Dockerfile b/cmd/web/Dockerfile index b0acfab..d56ccbc 100644 --- a/cmd/web/Dockerfile +++ b/cmd/web/Dockerfile @@ -16,6 +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 EXPOSE 80