mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-10 01:43:49 -04:00
Lidarr: flac2mp3 Release 2.3
## What's Changed - **Complete re-write of the core script to use shell instead of AWK.** - **New:** Better use of the Lidarr API, including: - Using it to delete or recycle old tracks - No more artist refresh/rescan (which took forever) (issue thecaptain989/lidarr-flac2mp3#39) - Imports the converted tracks directly - Fixed logging of curl errors and improved error handling - Removed unnecessary function - Improved track import JSON generator logic - Added check for 'queued' job status - Use tag or branch name as Docker image tag - Added GitHub Container Registry push - Added GitHub container Registry labels
This commit is contained in:
+4
-1
@@ -1,11 +1,14 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
|
||||
## Buildstage ##
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:3.17 as buildstage
|
||||
|
||||
ARG MOD_VERSION
|
||||
|
||||
# copy local files
|
||||
COPY root/ /root-layer/
|
||||
|
||||
# Add version to script
|
||||
RUN \
|
||||
MOD_VERSION="${MOD_VERSION:-unknown}" && \
|
||||
sed -i -e "s/{{VERSION}}/$MOD_VERSION/" \
|
||||
@@ -17,5 +20,5 @@ FROM scratch
|
||||
|
||||
LABEL maintainer="TheCaptain989"
|
||||
|
||||
# Copy local files
|
||||
# Add files from buildstage
|
||||
COPY --from=buildstage /root-layer/ /
|
||||
|
||||
Reference in New Issue
Block a user