mirror of
https://github.com/k4yt3x/video2x.git
synced 2026-03-16 00:18:01 +08:00
updated the Dockerfiles and the pipeline for 5.0.0-beta5
This commit is contained in:
43
Dockerfile
Normal file
43
Dockerfile
Normal file
@@ -0,0 +1,43 @@
|
||||
# Name: Video2X Dockerfile
|
||||
# Creator: K4YT3X
|
||||
# Date Created: February 3, 2022
|
||||
# Last Modified: March 28, 2022
|
||||
|
||||
# stage 1: build the python components into wheels
|
||||
FROM docker.io/nvidia/vulkan:1.2.133-450 AS builder
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
COPY . /video2x
|
||||
WORKDIR /video2x
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
python3.8 python3-pip python3-opencv python3-pil \
|
||||
python3.8-dev libvulkan-dev glslang-dev glslang-tools \
|
||||
build-essential swig \
|
||||
&& pip wheel -w /wheels wheel pdm-pep517 .
|
||||
|
||||
# stage 2: install wheels into the final image
|
||||
FROM docker.io/nvidia/vulkan:1.2.133-450
|
||||
LABEL maintainer="K4YT3X <i@k4yt3x.com>" \
|
||||
org.opencontainers.image.source="https://github.com/k4yt3x/video2x" \
|
||||
org.opencontainers.image.description="A lossless video/GIF/image upscaler"
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
ENV VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/nvidia_icd.json\
|
||||
:/usr/share/vulkan/icd.d/radeon_icd.x86_64.json\
|
||||
:/usr/share/vulkan/icd.d/intel_icd.x86_64.json
|
||||
|
||||
COPY --from=builder /var/lib/apt/lists* /var/lib/apt/lists/
|
||||
COPY --from=builder /wheels /wheels
|
||||
COPY . /video2x
|
||||
WORKDIR /video2x
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
python3-pip python3.8-dev \
|
||||
python3-opencv python3-pil \
|
||||
mesa-vulkan-drivers cuda-drivers ffmpeg \
|
||||
&& pip install --no-cache-dir --no-index -f /wheels . \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /wheels /video2x /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /host
|
||||
USER nobody
|
||||
ENTRYPOINT ["/usr/bin/python3.8", "-m", "video2x"]
|
||||
Reference in New Issue
Block a user