11 lines
420 B
Docker
11 lines
420 B
Docker
FROM debian:bookworm
|
|
|
|
RUN apt-get update; apt-get full-upgrade -y; apt-get autoclean -y
|
|
|
|
COPY project/buildtime/gen_selfisgned_cert.sh /tmp/buildtime/gen_selfisgned_cert.sh
|
|
RUN /bin/sh /tmp/buildtime/gen_selfsigned_cert.sh
|
|
|
|
COPY project/entrypoint/entrypoint.sh /entrypoint/entrypoint.sh
|
|
COPY project/entrypoint/install-nginx-mods.sh /entrypoint/install-nginx-mods.sh
|
|
ENTRYPOINT ["/bin/sh", "/entrypoint/entrypoint.sh"]
|