mirror of https://github.com/yutto-dev/yutto
15 lines
550 B
Docker
15 lines
550 B
Docker
FROM alpine:3.17
|
|
LABEL maintainer="siguremo" \
|
|
version="2.0.0-beta.22" \
|
|
description="light-weight container based on alpine for yutto"
|
|
|
|
RUN set -x \
|
|
&& sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories \
|
|
&& apk add -q --progress --update --no-cache ffmpeg python3 py-pip tzdata \
|
|
&& python3 -m pip install --no-cache-dir --pre yutto -i https://pypi.tuna.tsinghua.edu.cn/simple \
|
|
&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["yutto", "-d", "/app"]
|