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.
This commit is contained in:
n.nakhostin
2025-11-04 11:55:37 +03:30
parent cdd636485d
commit dae8eb44e2
+1
View File
@@ -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