docker-fdroidserver/Dockerfile

12 lines
298 B
Docker
Raw Normal View History

2021-09-30 19:01:38 +00:00
FROM wonko21/fdroidserver:latest
2021-09-28 21:17:36 +00:00
RUN apt-get update && \
2021-09-30 19:08:34 +00:00
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean
2021-09-29 14:32:14 +00:00
2021-09-30 19:01:38 +00:00
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash && \
2021-09-30 19:08:34 +00:00
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean