39 lines
925 B
Docker
39 lines
925 B
Docker
FROM php:8.2-fpm
|
|
|
|
# Set working directory
|
|
WORKDIR /var/www
|
|
|
|
# 1. Install system dependencies & NODE.JS (Kita gabung disini)
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
curl \
|
|
libpng-dev \
|
|
libonig-dev \
|
|
libxml2-dev \
|
|
zip \
|
|
unzip \
|
|
libzip-dev \
|
|
libicu-dev \
|
|
libjpeg62-turbo-dev \
|
|
libfreetype6-dev \
|
|
gnupg \
|
|
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Config & Install PHP extensions
|
|
RUN docker-php-ext-configure gd --with-freetype --with-jpeg \
|
|
&& docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd zip intl
|
|
|
|
# Get latest Composer
|
|
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
|
|
|
# Copy files
|
|
COPY . /var/www
|
|
|
|
# Set Permission
|
|
RUN chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache
|
|
|
|
EXPOSE 9000
|
|
CMD ["php-fpm"]
|