summaryrefslogtreecommitdiff
path: root/Dockerfile
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile18
1 files changed, 0 insertions, 18 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index d23c3eb..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,18 +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
-
-ENV B2_KEY_ID=""
-ENV B2_APPLICATION_KEY=""
-
-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
-COPY --from=build-stage /builddir/config/config.yaml /app/config.yaml
-
-ENTRYPOINT [ "/app/sayana-demo", "-c", "/app/config.yaml" ]