phpnuxbill/Dockerfile

26 lines
668 B
Docker
Raw Permalink Normal View History

2024-06-17 21:10:04 +08:00
# Use the official PHP image with Apache
FROM php:7.4-apache
EXPOSE 80
# Install necessary PHP extensions
RUN apt-get update && apt-get install -y \
libfreetype6-dev \
libjpeg62-turbo-dev \
libpng-dev \
2024-06-17 21:35:21 +08:00
zlib1g-dev \
2024-06-17 21:10:04 +08:00
libzip-dev \
zip \
unzip \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd \
2024-06-17 21:35:21 +08:00
&& docker-php-ext-install pdo pdo_mysql \
&& docker-php-ext-install zip
2024-06-17 21:10:04 +08:00
# copy contents into directory
COPY . /var/www/html
# Set appropriate permissions
RUN chown -R www-data:www-data /var/www/html
RUN chmod -R 755 /var/www/html
# Set working directory
WORKDIR /var/www/html