audio_pipeline

This commit is contained in:
sanek5g
2026-06-10 17:12:58 +03:00
commit 00ddac5af7
29 changed files with 3297 additions and 0 deletions

11
watcher/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM golang:1.22-alpine AS build
WORKDIR /src
COPY go.mod go.sum* ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -o /watcher ./cmd/watcher
FROM alpine:3.19
RUN apk add --no-cache ca-certificates
COPY --from=build /watcher /watcher
ENTRYPOINT ["/watcher"]