Block a user
ghcr.io/walter0697/converttube (latest)
Published 2026-08-22 00:36:37 -04:00 by docker-image
Installation
docker pull home-gitea.waltercheng.com/docker-image/ghcr.io/walter0697/converttube:latestsha256:3b2a1dd657c076d88f2e13946a1374b81d85a49e3142ae68640b9169386df0e5
Image Layers
| # debian.sh --arch 'amd64' out/ 'trixie' '@1779062400' |
| WORKDIR /app |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates libssl3 ffmpeg python3 python3-venv locales && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c python3 -m venv /opt/ffmpeg-normalize && /opt/ffmpeg-normalize/bin/pip install --no-cache-dir ffmpeg-normalize && ln -s /opt/ffmpeg-normalize/bin/ffmpeg-normalize /usr/local/bin/ffmpeg-normalize # buildkit |
| RUN /bin/sh -c sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen en_US.UTF-8 # buildkit |
| COPY /app/target/release/converttube /app/converttube # buildkit |
| COPY /app/templates ./templates # buildkit |
| COPY /app/static ./static # buildkit |
| EXPOSE [3000/tcp] |
| ENV DOWNLOADS_FOLDER=downloads |
| ENV OUTPUT_FOLDER=output |
| ENV LANG=en_US.UTF-8 |
| ENV LC_ALL=en_US.UTF-8 |
| CMD ["./converttube"] |