Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 20502c2..0000000 --- a/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -FROM golang:1.24.5-alpine3.22 AS build-stage - -WORKDIR /builddir -COPY . . -RUN go build -o sayana-demo . - -FROM alpine:3.22.1 AS runtime-stage - -WORKDIR /app -COPY --from=build-stage /builddir/sayana-demo /app/sayana-demo -COPY --from=build-stage /builddir/static /app/static -COPY --from=build-stage /builddir/views /app/views - -ENTRYPOINT [ "/app/sayana-demo" ] |