diff --git a/Dockerfile b/Dockerfile index d6c8508..88b620a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,14 @@ -FROM wonko21/fdroidserver:latest +FROM registry.gitlab.com/fdroid/docker-executable-fdroidserver:latest -RUN apt-get update && \ - apt-get upgrade -y && \ - rm -rf /var/lib/apt/lists/* && \ - apt-get clean +RUN apt-get update + && apt-get upgrade -y + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* -RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash && \ - apt-get install -y nodejs && \ - rm -rf /var/lib/apt/lists/* && \ - apt-get clean +# Install Node.js +RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash \ + && apt-get install -y nodejs \ + && rm -rf /var/lib/apt/lists/* \ + && apt-get clean + +ENTRYPOINT []