2
0
Fork 0

bsky2tg: add Containerfile

This commit is contained in:
Astra 2025-06-06 16:22:25 +01:00
parent bd53870157
commit 5959398e50

15
bsky2tg/Containerfile Normal file
View file

@ -0,0 +1,15 @@
FROM golang:alpine AS builder
WORKDIR /go/src/git.zio.sh/astra/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
CMD ["bsky2tg"]