This commit is contained in:
Henning Bocklage 2021-05-30 12:46:32 +02:00
parent 6914a78f84
commit d296d58936
2 changed files with 5 additions and 5 deletions

View File

@ -13,10 +13,10 @@ LABEL \
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash && \
apt-get -y --no-install-recommends install >/dev/null \
nodejs \
yarn \
git && \
git && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
rm -rf /var/lib/apt/lists/* && \
npm install --global yarn
#RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
#ENV NVM_DIR=/root/.nvm
@ -32,7 +32,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 npm start
s6-setuidgid abc yarn start