bsky2tg/Dockerfile
Astra e807e36a1f
All checks were successful
/ build (push) Successful in 1m11s
Add ffmpeg to Dockerfile
2025-11-26 14:14:34 +00:00

15 lines
No EOL
279 B
Docker

FROM golang:alpine AS builder
WORKDIR /go/src/git.zio.sh/bsky2tg
COPY . .
RUN apk update && \
apk add --no-cache git bash ffmpeg && \
go get -d -v ./... && \
go install
FROM alpine:latest
COPY --from=builder /go/bin/bsky2tg /usr/local/bin/bsky2tg
CMD ["bsky2tg"]