Compare commits

..

3 Commits

Author SHA1 Message Date
Philipp Lang 12f6852299 Lint
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
2023-12-21 13:38:42 +01:00
Philipp Lang fd75345675 Add texlive-extra-utils 2023-12-21 13:37:56 +01:00
Philipp Lang 225ea8f41d Add Poppler Utils to base container 2023-12-21 00:10:47 +01:00
2 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,9 @@
FROM php:8.1.6-fpm as php
WORKDIR /app
RUN ls /app
RUN apt-get update
RUN apt-get install -y rsync libcurl3-dev apt-utils zlib1g-dev libpng-dev libicu-dev libonig-dev unzip
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
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 --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 pecl install redis && docker-php-ext-enable redis
RUN usermod -s /bin/bash www-data

View File

@ -27,7 +27,7 @@ class InvoicesMassStored
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
* @return PrivateChannel
*/
public function broadcastOn()
{