bsky2tg/Dockerfile
Astra 04eec0113e
All checks were successful
/ build (push) Successful in 1m15s
Add ffmpeg to right place
2025-11-26 14:15:53 +00:00

16 lines
No EOL
316 B
Docker

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