9 lines
180 B
Docker
9 lines
180 B
Docker
FROM nginx:mainline-bookworm
|
|
|
|
RUN apt update && apt install -y dpkg-dev cron
|
|
|
|
COPY aux /aux
|
|
COPY init/* /docker-entrypoint.d/
|
|
COPY other/nginx.conf /etc/nginx/conf.d/default.conf
|
|
|