# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage

ARG MOD_VERSION

RUN \
  echo "**** grab transmissionic ****" && \
  mkdir -p /root-layer/themes && \
  if [ -z ${MOD_VERSION+x} ]; then \
    MOD_VERSION=$(curl -s "https://api.github.com/repos/6c65726f79/Transmissionic/releases/latest" \
    | jq -rc ".tag_name"); \
  fi && \
  curl -o \
    /tmp/transmissionic.zip -L \
    "https://github.com/6c65726f79/Transmissionic/releases/download/${MOD_VERSION}/Transmissionic-webui-${MOD_VERSION}.zip" && \
  unzip \
    /tmp/transmissionic.zip -d \
    /root-layer/themes && \
  mv /root-layer/themes/web /root-layer/themes/transmissionic

# copy local files
COPY root/ /root-layer/

# ## Single layer deployed image ##
FROM scratch

LABEL maintainer="thespad"

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