diff --git a/Dockerfile b/Dockerfile index 29a83c956..d1707f3c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,8 @@ FROM openjdk:19-slim AS build COPY . /home/reposilite-build WORKDIR /home/reposilite-build -RUN apt-get update; apt-get install -y curl \ - curl -fsSL https://deb.nodesource.com/setup_18.x | bash - &&\ - apt-get install -y nodejs &&\ - apt-get install -y npm \ +RUN \ + apt-get update; apt-get install -y curl RUN \ export GRADLE_OPTS="-Djdk.lang.Process.launchMechanism=vfork" && \ chmod +x gradlew && \