updated the Dockerfiles and the pipeline for 5.0.0-beta5

This commit is contained in:
k4yt3x
2022-04-01 06:23:46 +00:00
parent 268460fd17
commit 65c0d32a51
4 changed files with 37 additions and 18 deletions

View File

@@ -4,7 +4,7 @@
# Last Modified: March 18, 2022
# stage: build python components into heels
FROM docker.io/library/python:3.10.2-alpine3.15 AS builder
FROM docker.io/library/python:3.10.4-alpine3.15 AS builder
COPY . /video2x
WORKDIR /video2x
RUN apk add --no-cache \
@@ -15,7 +15,7 @@ RUN apk add --no-cache \
&& pip wheel -w /wheels wheel pdm-pep517 .
# stage 2: install wheels into final image
FROM docker.io/library/python:3.10.2-alpine3.15
FROM docker.io/library/python:3.10.4-alpine3.15
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"