From dae8eb44e2a1f96626e6edc7cc5a045136ac9c66 Mon Sep 17 00:00:00 2001 From: "n.nakhostin" Date: Tue, 4 Nov 2025 11:55:37 +0330 Subject: [PATCH] Add Documentation Copy Step in Dockerfile - Added a step in the Dockerfile to copy the documentation files from the build stage to the final image. - This change ensures that the documentation is included in the Docker image, improving accessibility for users and developers. --- cmd/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/web/Dockerfile b/cmd/web/Dockerfile index 08084cd..d448d3c 100644 --- a/cmd/web/Dockerfile +++ b/cmd/web/Dockerfile @@ -17,6 +17,7 @@ WORKDIR /app COPY --from=go-builder /app/web-build . COPY --from=go-builder /app/cmd/web/assets ./assets +COPY --from=go-builder /app/cmd/web/docs ./docs EXPOSE 80