Add ffmpeg to right place
All checks were successful
/ build (push) Successful in 1m15s

This commit is contained in:
Astra 2025-11-26 14:15:53 +00:00
parent e807e36a1f
commit 04eec0113e

View file

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