Containerizes application #12

Merged
asohh merged 42 commits from container into main 2025-10-25 16:40:46 +02:00
2 changed files with 4 additions and 5 deletions
Showing only changes of commit 5e12ac6b38 - Show all commits

changed base container for data_handler

asohh 2025-10-12 12:09:09 +02:00

View file

@ -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

View file

@ -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