# 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/" \
    /root-layer/usr/local/bin/striptracks.sh \
    /root-layer/etc/s6-overlay/s6-rc.d/init-mod-radarr-striptracks-add-package/run

## Single layer deployed image ##
FROM scratch

LABEL maintainer="TheCaptain989"

# Add files from buildstage
COPY --from=buildstage /root-layer/ /
