chore: project boilerplate

This commit is contained in:
Felipe M 2025-05-08 10:09:52 +02:00
parent e5cf23619d
commit 9dafbe26c7
Signed by: fmartingr
GPG key ID: CCFBC5637D4000A8
10 changed files with 577 additions and 52 deletions

10
Containerfile Normal file
View file

@ -0,0 +1,10 @@
# This file is used directly by the goreleaser build
# It is used to build the final container image
FROM alpine:latest
# Install ffmpeg
RUN apk add --no-cache ffmpeg
WORKDIR /
COPY /discord-radio-bot /usr/bin/discord-radio-bot
ENTRYPOINT ["/usr/bin/discord-radio-bot"]