Files
docker-mods-uptime-kuma-tim…/Dockerfile
T
TheCaptain989 750adb75d9 Update Dockerfile
- Bump to Alpine 3.20
2024-06-21 15:54:06 -05:00

28 lines
884 B
Docker

# syntax=docker/dockerfile:1
## Buildstage ##
FROM ghcr.io/linuxserver/baseimage-alpine:3.20 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/" \
/root-layer/usr/local/bin/flac2mp3.sh \
/root-layer/etc/s6-overlay/s6-rc.d/init-mod-lidarr-flac2mp3-add-package/run
## Single layer deployed image ##
FROM scratch
LABEL org.opencontainers.image.source=https://github.com/TheCaptain989/lidarr-flac2mp3
LABEL org.opencontainers.image.description="A Docker Mod to Lidarr to automatically convert FLAC files to MP3s, or other format"
LABEL org.opencontainers.image.licenses=GPL-3.0-only
LABEL org.opencontainers.image.authors="TheCaptain989 <thecaptain989@protonmail.com>"
# Add files from buildstage
COPY --from=buildstage /root-layer/ /