refs #5739 dockerfile refactored
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Alexandre Riera 2023-06-09 14:00:14 +02:00
parent edb06a894a
commit 3e6e284861
1 changed files with 6 additions and 1 deletions

View File

@ -10,7 +10,6 @@ RUN apt-get update \
curl \
ca-certificates \
gnupg2 \
graphicsmagick \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& npm install -g npm@9.6.6
@ -29,6 +28,12 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* \
&& npm -g install pm2
# Additional libraries
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
graphicsmagick
# Salix
WORKDIR /salix