From dcece5c291dee9c2ff60a912f755b7894aa78799 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Jul 2023 06:34:56 +0000 Subject: [PATCH] Bot Updating Templated Files --- Dockerfile.armhf | 50 ------------------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 Dockerfile.armhf diff --git a/Dockerfile.armhf b/Dockerfile.armhf deleted file mode 100644 index 166188a..0000000 --- a/Dockerfile.armhf +++ /dev/null @@ -1,50 +0,0 @@ -# syntax=docker/dockerfile:1 - -FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.17 - -# set version label -ARG BUILD_DATE -ARG VERSION -ARG MSTREAM_RELEASE -LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="chbmb" - -ENV HOME="/config" - -RUN \ - echo "**** install runtime packages ****" && \ - apk add --no-cache --upgrade \ - nodejs \ - npm \ - openssl && \ - echo "**** install app ****" && \ - mkdir -p \ - /opt/mstream && \ - if [ -z ${MSTREAM_RELEASE+x} ]; then \ - MSTREAM_RELEASE=$(curl -sX GET "https://api.github.com/repos/IrosTheBeggar/mStream/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ - fi && \ - curl -o \ - /tmp/mstream.tar.gz -L \ - "https://github.com/IrosTheBeggar/mStream/archive/${MSTREAM_RELEASE}.tar.gz" && \ - tar xzf \ - /tmp/mstream.tar.gz -C \ - /opt/mstream/ --strip-components=1 && \ - cd /opt/mstream && \ - chown -R abc:abc ./ && \ - su -s /bin/sh abc -c 'HOME=/tmp npm install --omit=dev' && \ - npm link && \ - echo "**** cleanup ****" && \ - rm -rf /opt/mstream/save/sync && \ - ln -s /config/sync /opt/mstream/save/sync && \ - rm -rf \ - $HOME/.cache \ - /tmp/* \ - /tmp/.npm - -# add local files -COPY root/ / - -# ports and volumes -EXPOSE 3000 -VOLUME /config