feat: bootstrap JOBcard CRM foundation

This commit is contained in:
Marco0300
2026-09-01 18:54:47 +02:00
commit 480494c5ed
31 changed files with 1300 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM php:8.4-fpm-alpine
RUN docker-php-ext-install pdo_mysql
WORKDIR /var/www/html
COPY app ./app
COPY config ./config
COPY database ./database
COPY public ./public
RUN addgroup -g 1000 appgroup && adduser -D -u 1000 -G appgroup appuser \
&& chown -R appuser:appgroup /var/www/html
USER appuser
CMD ["php-fpm", "-F"]