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.
This commit is contained in:
n.nakhostin
2025-09-09 14:56:50 +03:30
parent b445bb297f
commit 6458211f12
+1 -1
View File
@@ -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