Remove dockerfile for amvera

This commit is contained in:
2025-09-20 20:00:01 +03:00
parent 858fbb73c1
commit 7ff184720d
2 changed files with 0 additions and 16 deletions
-2
View File
@@ -1,2 +0,0 @@
build:
dockerfile: docker/Dockerfile-amvera
-14
View File
@@ -1,14 +0,0 @@
FROM golang:1.24.2 AS build
WORKDIR /app
COPY . .
RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux go build -o /app/bin/anon3anon ./cmd/anon3anon
FROM alpine:latest AS run
COPY --from=build /app/bin/anon3anon /app/bin/
CMD ["/app/bin/anon3anon"]