From 79ee9baef88e6595c2816a2da86cf3e814b7c068 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 1 Jul 2023 21:55:29 +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 fe2b19b..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 RANETO_RELEASE -LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" - -RUN \ - echo "**** install build packages ****" && \ - apk add --no-cache --virtual=build-dependencies \ - build-base \ - libsass-dev \ - npm && \ - echo "**** install runtime packages ****" && \ - apk add --no-cache \ - nodejs && \ - echo "**** install raneto ****" && \ - mkdir -p \ - /app/raneto && \ - if [ -z ${RANETO_RELEASE+x} ]; then \ - RANETO_RELEASE=$(curl -sX GET "https://api.github.com/repos/ryanlelek/Raneto/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ - fi && \ - curl -o \ - /tmp/raneto-src.tar.gz -L \ - "https://github.com/ryanlelek/Raneto/archive/${RANETO_RELEASE}.tar.gz" && \ - tar xf \ - /tmp/raneto-src.tar.gz -C \ - /app/raneto --strip-components=1 && \ - echo "**** install raneto node dev modules and build ****" && \ - cd /app/raneto && \ - npm install --omit=dev && \ - echo "**** cleanup ****" && \ - apk del --purge \ - build-dependencies && \ - rm -rf \ - $HOME/.npm \ - /tmp/* - -# copy local files -COPY root/ / - -# ports and volumes -EXPOSE 3000 - -VOLUME /config