42 lines
1,007 B
Erlang
42 lines
1,007 B
Erlang
FROM php:8.2-fpm
|
|
|
|
# Install system dependencies + Node.js (for asset builds)
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
curl \
|
|
ca-certificates \
|
|
gnupg \
|
|
libpng-dev \
|
|
libonig-dev \
|
|
libxml2-dev \
|
|
zip \
|
|
unzip \
|
|
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install PHP extensions
|
|
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd
|
|
|
|
# Get latest Composer
|
|
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
|
|
|
# Set working directory
|
|
WORKDIR /var/www
|
|
|
|
# Add entrypoint
|
|
COPY docker/app-entrypoint.sh /usr/local/bin/app-entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/app-entrypoint.sh
|
|
|
|
# Copy existing application directory
|
|
COPY . /var/www
|
|
|
|
# Set permissions
|
|
RUN chown -R www-data:www-data /var/www
|
|
|
|
# Expose port 9000 for PHP-FPM and 8741 for artisan serve
|
|
EXPOSE 9000
|
|
EXPOSE 8741
|
|
|
|
ENTRYPOINT ["app-entrypoint.sh"]
|
|
CMD ["php", "artisan", "serve"]
|