This commit is contained in:
MedzikUser 2021-09-30 21:08:34 +02:00
parent a023bde566
commit 1f802a3280
No known key found for this signature in database
GPG Key ID: 3AC8B718A75F3281
1 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,11 @@
FROM wonko21/fdroidserver:latest
RUN apt-get update && \
apt-get upgrade -y
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash && \
apt-get install -y nodejs
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean