lidarr-on-steroids/Dockerfile

48 lines
1.6 KiB
Docker
Raw Permalink Normal View History

2023-09-09 11:22:14 +00:00
FROM docker.io/library/node:16-alpine as deemix
ARG TARGETPLATFORM=linux/amd64
2023-09-09 11:22:14 +00:00
RUN apk add --no-cache git jq python3 make gcc musl-dev g++ && \
rm -rf /var/lib/apt/lists/*
RUN git clone --recurse-submodules https://gitlab.com/RemixDev/deemix-gui.git
WORKDIR deemix-gui
RUN case "$TARGETPLATFORM" in \
"linux/amd64") \
jq '.pkg.targets = ["node16-alpine-x64"]' ./server/package.json > tmp-json ;; \
"linux/arm64") \
jq '.pkg.targets = ["node16-alpine-arm64"]' ./server/package.json > tmp-json ;; \
*) \
echo "Platform not supported" && exit 1 ;; \
esac && \
mv tmp-json /deemix-gui/server/package.json
2023-09-09 11:10:47 +00:00
RUN yarn install-all
# Patching deemix: see issue https://github.com/youegraillot/lidarr-on-steroids/issues/63
RUN sed -i 's/const channelData = await dz.gw.get_page(channelName)/let channelData; try { channelData = await dz.gw.get_page(channelName); } catch (error) { console.error(`Caught error ${error}`); return [];}/' ./server/src/routes/api/get/newReleases.ts
RUN yarn dist-server
RUN mv /deemix-gui/dist/deemix-server /deemix-server
2022-07-15 21:35:56 +00:00
FROM cr.hotio.dev/hotio/lidarr:pr-plugins-1.4.1.3564
2022-07-14 23:04:14 +00:00
LABEL maintainer="youegraillot"
ENV DEEMIX_SINGLE_USER=true
ENV AUTOCONFIG=true
2022-07-15 12:22:04 +00:00
ENV PUID=1000
ENV PGID=1000
2022-07-14 23:04:14 +00:00
# flac2mp3
RUN apk add --no-cache ffmpeg && \
rm -rf /var/lib/apt/lists/*
2022-07-16 20:40:16 +00:00
COPY lidarr-flac2mp3/root/usr /usr
2022-07-14 23:04:14 +00:00
# deemix
2022-07-15 21:35:56 +00:00
COPY --from=deemix /deemix-server /deemix-server
2022-07-14 23:04:14 +00:00
RUN chmod +x /deemix-server
2022-11-26 15:30:53 +00:00
VOLUME ["/config_deemix", "/downloads"]
2022-07-14 23:04:14 +00:00
EXPOSE 6595
COPY root /
2022-11-26 19:33:17 +00:00
RUN chmod +x /etc/services.d/*/run
2022-11-26 15:30:53 +00:00
VOLUME ["/config", "/music"]
2022-07-14 23:04:14 +00:00
EXPOSE 6595 8686