General refactor and fix

This commit is contained in:
eroncero
2025-08-18 16:10:38 +02:00
parent ce59badfe0
commit 69b7243685
11 changed files with 17 additions and 19 deletions

View File

@@ -1,10 +1,11 @@
FROM debian:bookworm
ARG DEBIAN_FRONTEND=noninteractive
ARG DEBCONF_NONINTERACTIVE_SEEN=true
ENV DEBIAN_FRONTEND=noninteractive
ENV DEBCONF_NONINTERACTIVE_SEEN=true
RUN apt-get update; apt-get full-upgrade -y; apt-get autoclean -y; apt-get install nginx certbot python3-certbot-nginx openssl vim curl iputils-ping -y --download-only
RUN apt-get update; apt-get full-upgrade -y; apt-get autoclean -y; apt-get install -y vim curl iputils-ping; apt-get install -y nginx certbot python3-certbot-nginx openssl --download-only
COPY project/entrypoint/entrypoint.sh /entrypoint/entrypoint.sh
COPY project/entrypoint/copy-config.sh /entrypoint/copy-config.sh
COPY project/entrypoint/gen-cert.sh /entrypoint/gen-cert.sh
ENTRYPOINT ["/bin/sh", "/entrypoint/entrypoint.sh"]