labsync/mktorrent/Dockerfile

11 lines
180 B
Docker

FROM alpine
RUN apk add --no-cache mktorrent \
&& mkdir /workdir
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
WORKDIR /workdir
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]