8 lines
314 B
Docker
8 lines
314 B
Docker
FROM docker.io/nginx:latest
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
fdroidserver \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
COPY entrypoint.sh /docker-entrypoint.d/99-init-fdroid.sh
|
|
COPY default.conf /etc/nginx/conf.d/
|