Files
Rezepte/Dockerfile
2025-09-20 16:01:52 +02:00

33 lines
661 B
Docker

FROM php:8.1-apache
# Install system dependencies
RUN apt-get update && apt-get install -y \
libzip-dev \
zip \
unzip \
&& rm -rf /var/lib/apt/lists/*
# Install PHP extensions
RUN docker-php-ext-install mysqli pdo pdo_mysql zip
# Enable Apache mod_rewrite
RUN a2enmod rewrite
# Set working directory
WORKDIR /var/www/html
# Copy application files
COPY . /var/www/html/
# Set permissions
RUN chown -R www-data:www-data /var/www/html \
&& chmod -R 755 /var/www/html
# Create uploads directory if not exists
RUN mkdir -p uploads && chown -R www-data:www-data uploads
# Expose port 80
EXPOSE 80
# Start Apache
CMD ["apache2-foreground"]