This commit is contained in:
MedzikUser 2021-10-02 18:20:56 +02:00
parent 1f802a3280
commit a6d2e06a11
No known key found for this signature in database
GPG Key ID: 3AC8B718A75F3281
1 changed files with 12 additions and 9 deletions

View File

@ -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 []