A bunch of things

This commit is contained in:
eroncero
2025-08-15 19:11:21 +02:00
parent 89e2780710
commit 1270dad444
16 changed files with 35 additions and 12 deletions

View File

@@ -3,8 +3,9 @@ FROM debian:bookworm
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 mariadb-server mariadb-client iputils-ping -y --download-only
RUN apt-get update; apt-get full-upgrade -y; apt-get autoclean -y; apt-get install iputils-ping -y; apt-get install mariadb-server mariadb-client -y --download-only
COPY project/entrypoint/entrypoint.sh /entrypoint/entrypoint.sh
COPY project/entrypoint/install-packages.sh /entrypoint/install-packages.sh
ENTRYPOINT ["/bin/sh", "/entrypoint/entrypoint.sh"]