update to yt-local v0.2.21

This commit is contained in:
Astound 2025-03-02 07:34:52 +08:00
parent 28dac0bb36
commit 82380b95b0
Signed by: kaiser
GPG Key ID: 97504AF0027B1A56
2 changed files with 4 additions and 6 deletions

View File

@ -11,9 +11,6 @@ jobs:
release-default: release-default:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Collect Workflow Telemetry
uses: catchpoint/workflow-telemetry-action@v2
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -45,8 +42,9 @@ jobs:
context: core context: core
file: core/Dockerfile file: core/Dockerfile
push: false push: false
platforms: linux/amd64 # load not supported for multi-platform builds
no-cache: true no-cache: true
load: true load: true # load is required to use the image in analyze trivy step
tags: | tags: |
${{ secrets.DOCKER_REGISTRY_USER}}/yt-local:latest ${{ secrets.DOCKER_REGISTRY_USER}}/yt-local:latest
${{ secrets.DOCKER_REGISTRY_USER}}/yt-local:${{ env.VERSION }} ${{ secrets.DOCKER_REGISTRY_USER}}/yt-local:${{ env.VERSION }}

View File

@ -1,4 +1,4 @@
FROM docker.io/python:3.11-alpine AS base FROM docker.io/python:3.13-alpine AS base
FROM base AS builder FROM base AS builder
@ -7,7 +7,7 @@ ENV LC_ALL=C.UTF-8
ARG APP_DIR="/srv/app" ARG APP_DIR="/srv/app"
ARG YT_REPO="https://git.fridu.us/heckyel/yt-local.git" ARG YT_REPO="https://git.fridu.us/heckyel/yt-local.git"
ARG YT_BRANCH="v0.2.20" ARG YT_BRANCH="v0.2.21"
RUN apk update && \ RUN apk update && \
apk upgrade && \ apk upgrade && \