From 240d722fdaff878be81911151941d4df63e676a0 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Thu, 10 Feb 2022 03:26:01 +0000 Subject: [PATCH] updated the Dockerfiles to use full URL --- Dockerfile | 4 ++-- Dockerfile.alpine | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e69a179..e729d84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # Last Modified: February 4, 2022 # stage 1: build the python components into wheels -FROM nvidia/cuda:11.6.0-runtime-ubuntu20.04 AS builder +FROM docker.io/nvidia/cuda:11.6.0-runtime-ubuntu20.04 AS builder ENV DEBIAN_FRONTEND=noninteractive COPY . /video2x @@ -21,7 +21,7 @@ RUN apt-get update \ rife-ncnn-vulkan-python@git+https://github.com/media2x/rife-ncnn-vulkan-python.git . # stage 2: install wheels into the final image -FROM nvidia/cuda:11.6.0-runtime-ubuntu20.04 +FROM docker.io/nvidia/cuda:11.6.0-runtime-ubuntu20.04 LABEL maintainer="K4YT3X " \ org.opencontainers.image.source="https://github.com/k4yt3x/video2x" \ org.opencontainers.image.description="A lossless video/GIF/image upscaler" diff --git a/Dockerfile.alpine b/Dockerfile.alpine index ac9b824..840858e 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -4,7 +4,7 @@ # Last Modified: February 4, 2022 # stage: build python components into heels -FROM python:3.10.2-alpine3.15 AS builder +FROM docker.io/library/python:3.10.2-alpine3.15 AS builder COPY . /video2x WORKDIR /video2x RUN apk add --no-cache \ @@ -17,7 +17,7 @@ RUN apk add --no-cache \ rife-ncnn-vulkan-python@git+https://github.com/media2x/rife-ncnn-vulkan-python.git . # stage 2: install wheels into final image -FROM python:3.10.2-alpine3.15 +FROM docker.io/library/python:3.10.2-alpine3.15 LABEL maintainer="K4YT3X " org.opencontainers.image.source="https://github.com/k4yt3x/video2x" \ org.opencontainers.image.description="A lossless video/GIF/image upscaler"