diff --git a/Containerfile.data_handler b/Containerfile.data_handler new file mode 100644 index 0000000..f45b7b2 --- /dev/null +++ b/Containerfile.data_handler @@ -0,0 +1,4 @@ +FROM ghcr.io/asohh/fedora-minimal-containers/php-cli:43 +RUN microdnf install -y php-mysqli php-bcmath php-xml gunzip && microdnf clean all +COPY ./utils/* /opt/ +COPY ./data_init/*.sql /opt/init/init.sql diff --git a/Containerfile.utils b/Containerfile.utils deleted file mode 100644 index e9f4bba..0000000 --- a/Containerfile.utils +++ /dev/null @@ -1,5 +0,0 @@ -FROM docker.io/library/php:cli - -RUN docker-php-ext-install mysqli bcmath -COPY ./utils/* /opt/ -COPY ./data_init/*.sql /opt/init/init.sql