Compare commits
2 Commits
6fd0ba50b9
...
d14a373a76
Author | SHA1 | Date |
---|---|---|
|
d14a373a76 | |
|
b5f87f2368 |
|
@ -2,9 +2,11 @@ FROM php:8.1.6-fpm as php
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN ls /app
|
RUN ls /app
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y rsync libcurl3-dev apt-utils zlib1g-dev libpng-dev libicu-dev libonig-dev unzip poppler-utils
|
RUN apt-get install -y rsync libcurl3-dev apt-utils zlib1g-dev libpng-dev libicu-dev libonig-dev unzip poppler-utils libpng-dev libjpeg-dev default-mysql-client
|
||||||
RUN apt-get install -y --no-install-recommends texlive-base texlive-latex-base texlive-pictures texlive-latex-extra texlive-lang-german texlive-plain-generic texlive-fonts-recommended texlive-fonts-extra texlive-extra-utils
|
RUN apt-get install -y --no-install-recommends texlive-base texlive-latex-base texlive-pictures texlive-latex-extra texlive-lang-german texlive-plain-generic texlive-fonts-recommended texlive-fonts-extra texlive-extra-utils
|
||||||
RUN docker-php-ext-install pdo_mysql curl gd exif intl mbstring pcntl
|
RUN docker-php-ext-install pdo_mysql curl gd exif intl mbstring pcntl
|
||||||
RUN pecl install redis && docker-php-ext-enable redis
|
RUN pecl install redis && docker-php-ext-enable redis
|
||||||
|
RUN docker-php-ext-configure gd --with-jpeg
|
||||||
|
RUN docker-php-ext-enable gd
|
||||||
RUN usermod -s /bin/bash www-data
|
RUN usermod -s /bin/bash www-data
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
node_modules
|
**/node_modules
|
||||||
data
|
data
|
||||||
vendor
|
**/vendor
|
||||||
public/build
|
public/build
|
||||||
public/vendor
|
public/vendor
|
||||||
bootstrap/cache/services.php
|
bootstrap/cache/services.php
|
||||||
bootstrap/cache/packages.php
|
bootstrap/cache/packages.php
|
||||||
bootstrap/cache/routes.php
|
bootstrap/cache/routes.php
|
||||||
packages/laravel-nami/.cookies
|
packages/laravel-nami/.cookies
|
||||||
app/storage/app
|
storage
|
||||||
cookies
|
cookies
|
||||||
storage/logs/laravel.log
|
storage/logs/laravel.log
|
||||||
|
.git
|
||||||
|
doc
|
||||||
|
|
Loading…
Reference in New Issue