summaryrefslogtreecommitdiff
diff options
from:
to:
context:
space:
mode:
authorGravatar SayaAndy <montferrat@tuta.io> 2025-07-22 01:31:59 +0700
committerGravatar SayaAndy <montferrat@tuta.io> 2025-07-22 01:31:59 +0700
commit05c023616b32e8597c52364dce83fe4a008060b5 (patch)
tree88b1b4728586dfc7e83195a43c624d99de6f391c
parent9a813623aed1efeeef2ebdfadd653edbbcb9be64 (diff)
downloadweb-05c023616b32e8597c52364dce83fe4a008060b5.tar.gz
web-05c023616b32e8597c52364dce83fe4a008060b5.zip
fix: docker file typos0.1.0
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index ea62ed3..d9eb9fb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,7 +6,8 @@ RUN go build -o sayana-demo .
FROM alpine:3.22.1 AS runtime-stage
-COPY --from=build-stage /builddir/main /app/sayana-demo
+WORKDIR /app
+COPY --from=build-stage /builddir/sayana-demo /app/sayana-demo
COPY --from=build-stage /builddir/public /app/public
ENTRYPOINT [ "/app/sayana-demo" ]