Initialize repository

This commit is contained in:
Hugo Peixoto 2023-12-21 21:57:52 +00:00
commit 1652bb08de
4 changed files with 42 additions and 0 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
/.git
/Dockerfile
/.dockerignore

21
Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM php:8.3.0-apache
VOLUME /var/www/html
RUN docker-php-ext-install mysqli
RUN apt-get update && apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng-dev libwebp-dev git libc-client-dev libkrb5-dev
RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp
RUN docker-php-ext-install gd
RUN docker-php-ext-configure imap --with-kerberos --with-imap-ssl
RUN docker-php-ext-install imap
RUN a2enmod rewrite
RUN a2enmod expires
ADD freescout-dist /var/www/html
ADD apache2.conf /etc/apache2/sites-enabled/000-default.conf
ADD freescout-entrypoint /usr/local/bin/
EXPOSE 80
ENTRYPOINT ["freescout-entrypoint"]

10
apache2.conf Normal file
View File

@ -0,0 +1,10 @@
<VirtualHost *:80>
#ServerName example.com
DocumentRoot "/var/www/html/public"
Options Indexes FollowSymLinks
ErrorLog /var/www/html/storage/logs/web-server.log
<Directory "/var/www/html/public">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>

8
freescout-entrypoint Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
set -e
php artisan freescout:clear-cache
php artisan storage:link
php artisan migrate
exec docker-php-entrypoint