Initial commit: Laravel supplier dashboard with Docker setup

This commit is contained in:
User021230
2026-03-05 18:35:50 +02:00
commit 3c034c3e0d
59 changed files with 2465 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM php:8.2-fpm
WORKDIR /var/www
RUN apt-get update && apt-get install -y \
git \
curl \
zip \
unzip \
libpng-dev \
libonig-dev \
libxml2-dev
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
WORKDIR /var/www