first commit

This commit is contained in:
Power BI Dev
2026-04-28 23:22:31 +07:00
commit 3ae282607f
7 changed files with 254 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM php:8.2-apache-bookworm
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl libcurl4-openssl-dev \
&& docker-php-ext-install curl \
&& a2enmod rewrite \
&& printf 'ServerName localhost\n' > /etc/apache2/conf-available/server-name.conf \
&& a2enconf server-name \
&& rm -rf /var/lib/apt/lists/*
COPY public/ /var/www/html/
EXPOSE 80