11 lines
447 B
Docker
11 lines
447 B
Docker
FROM docker.io/nginx:latest
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
cron \
|
|
fdroidserver \
|
|
jq \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
COPY entrypoint.sh /docker-entrypoint.d/99-entrypoint.sh
|
|
COPY scripts/ /usr/local/bin/
|
|
COPY default.conf /etc/nginx/conf.d/
|