mirror of
https://github.com/linuxserver/docker-raneto.git
synced 2026-02-20 02:30:54 +08:00
Bot Updating Templated Files
This commit is contained in:
parent
55ad89535c
commit
79ee9baef8
@ -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
|
||||
Loading…
x
Reference in New Issue
Block a user