- Simplify Dockerfile: use pre-built cross-compiled binary instead of building in Alpine (Alpine only has Zig 0.13, we need 0.15) - Fix image URL in k8s manifest: git.mikhailkilin.ru (not gitea.) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
132 B
Docker
5 lines
132 B
Docker
FROM alpine:3.21
|
|
RUN apk add --no-cache ffmpeg ca-certificates
|
|
COPY zig-out/bin/transcribator /usr/local/bin/
|
|
CMD ["transcribator"]
|