This commit is contained in:
Henning Bocklage
2021-05-30 12:03:55 +02:00
parent 1d3f11a48d
commit c9ef3fbe39
2 changed files with 7 additions and 3 deletions

View File

@ -11,7 +11,11 @@ LABEL \
maintainer="Bocki"
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash && \
apt-get install -y nodejs
apt-get -y --no-install-recommends install >/dev/null \
nodejs \
yarn && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*;
#RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
#ENV NVM_DIR=/root/.nvm
@ -30,7 +34,7 @@ RUN git clone https://gitlab.com/RemixDev/deemix-gui.git --recursive && \
WORKDIR /deemix-gui/server
RUN npm install
RUN yarn install
COPY root/ /

View File

@ -10,4 +10,4 @@ cd /deemix-gui/server
HOME=/deem
echo "[services.d] Starting Deemix"
s6-setuidgid abc yarn start
s6-setuidgid abc yarn start-build