Compare commits

...

2 Commits

Author SHA1 Message Date
b5f3402fe8 fix typo 2022-07-17 16:43:30 +02:00
9edb49f0a8 update dockerfile 2022-07-17 16:43:21 +02:00
2 changed files with 29 additions and 8 deletions

View File

@ -36,4 +36,4 @@ networks:
laravel-back-network:
driver: bridge
# docker build -t laravel/docker:v1 ./php
# docker build -t laravel/zarif:v1 ./php

View File

@ -1,21 +1,42 @@
FROM php:8.0-apache
RUN apt update && apt install -y \
g++ \
RUN apt-get update \
&& apt-get -y upgrade --no-install-recommends \
&& apt-get install -y \
build-essential \
imagemagick \
libfreetype6-dev \
libicu-dev \
libjpeg62-turbo-dev \
libjpeg-dev \
libmcrypt-dev \
libonig-dev \
libpng-dev \
libpq-dev \
libssl-dev \
libxml2-dev \
libxrender1 \
libzip-dev \
locales \
openssl \
unzip \
zip \
zlib1g-dev \
nano \
mariadb-client
--no-install-recommends \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-install \
RUN docker-php-ext-configure gd \
--with-freetype \
--with-jpeg \
&& docker-php-ext-install -j$(nproc) \
gd \
bcmath \
intl \
opcache \
mbstring \
pcntl \
pdo \
pdo_mysql \
pgsql
zip
WORKDIR /var/www/laravel_docker