aboutsummaryrefslogtreecommitdiff
path: root/contrib/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/Dockerfile')
-rw-r--r--contrib/Dockerfile25
1 files changed, 0 insertions, 25 deletions
diff --git a/contrib/Dockerfile b/contrib/Dockerfile
deleted file mode 100644
index 753bc6c..0000000
--- a/contrib/Dockerfile
+++ /dev/null
@@ -1,25 +0,0 @@
-FROM golang:1.19-alpine AS builder
-
-WORKDIR /app
-
-COPY . ./
-
-RUN apk add gcc musl-dev libc-dev
-
-RUN go mod download
-RUN go mod verify
-RUN go build -o legit
-
-FROM alpine:latest
-
-WORKDIR /app
-
-COPY static ./static
-COPY templates ./templates
-COPY config.yaml ./
-COPY --from=builder /app/legit ./
-
-EXPOSE 5555
-
-CMD ["./legit"]
-