Initial release

This commit is contained in:
TheSpad
2023-02-20 09:44:01 +00:00
parent 6745950323
commit b6e9df1713
25 changed files with 56 additions and 136 deletions
+28 -3
View File
@@ -1,6 +1,31 @@
FROM scratch
# syntax=docker/dockerfile:1
LABEL maintainer="username"
FROM ghcr.io/linuxserver/baseimage-alpine:3.17 as buildstage
ARG TRANSMISSIONIC_VERSION
RUN \
echo "**** grab transmissionic ****" && \
mkdir -p /root-layer/themes && \
if [ -z ${TRANSMISSIONIC_VERSION+x} ]; then \
TRANSMISSIONIC_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/${TRANSMISSIONIC_VERSION}/Transmissionic-webui-${TRANSMISSIONIC_VERSION}.zip" && \
unzip \
/tmp/transmissionic.zip -d \
/root-layer/themes && \
mv /root-layer/themes/web /root-layer/themes/transmissionic
# copy local files
COPY root/ /
COPY root/ /root-layer/
# ## Single layer deployed image ##
FROM scratch
LABEL maintainer="thespad"
# # Add files from buildstage
COPY --from=buildstage /root-layer/ /