docker-fdroidserver/Dockerfile

15 lines
368 B
Docker
Raw Normal View History

2021-10-02 16:20:56 +00:00
FROM registry.gitlab.com/fdroid/docker-executable-fdroidserver:latest
2021-09-30 19:01:38 +00:00
2021-10-02 16:23:15 +00:00
RUN apt-get update \
&& apt-get upgrade -y \
2021-10-02 16:20:56 +00:00
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
2021-09-29 14:32:14 +00:00
2021-10-02 16:20:56 +00:00
# Install Node.js
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash \
&& apt-get install -y nodejs \
2021-10-03 12:27:00 +00:00
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
2021-10-02 16:20:56 +00:00
ENTRYPOINT []