11 lines
278 B
Docker
11 lines
278 B
Docker
FROM alpine:3.20
|
|
|
|
LABEL maintainer="cobweb@xmitter.net"
|
|
LABEL description="AutoQueue helper for AzuraCast — automatically queue new uploads"
|
|
|
|
RUN apk add --no-cache bash curl jq inotify-tools
|
|
|
|
WORKDIR /app
|
|
COPY autoqueue.sh /app/autoqueue.sh
|
|
|
|
ENTRYPOINT ["/app/autoqueue.sh"]
|