update dockerfile
This commit is contained in:
parent
90a818b3a8
commit
9edb49f0a8
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user