10 lines
272 B
Docker
10 lines
272 B
Docker
# 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"]
|