Dockerfile: Add comment to server copy command

This commit is contained in:
IRHM
2026-03-01 22:38:51 +00:00
parent 22f77aa142
commit 70f59697d3
+3
View File
@@ -4,6 +4,9 @@
FROM golang:1.25-alpine AS server
WORKDIR /server
# We can copy the whole server folder, since our .dockerignore file
# will filter out stuff we don't want in the final image.
COPY server/ ./
# Required so we can build with cgo