Skip to content
Snippets Groups Projects
Containerfile 288 B
Newer Older
Hugo Renard's avatar
Hugo Renard committed
FROM alpine:3

WORKDIR /data
RUN apk add --no-cache ffmpeg wget jq
RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /usr/local/bin/mc
RUN chmod +x /usr/local/bin/mc
COPY ./encode.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/encode.sh

ENTRYPOINT ["encode.sh"]
CMD ["run"]