-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathDockerfile
53 lines (40 loc) · 1.12 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FROM php:8.2-apache
# Set working directory
WORKDIR /var/www/html
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
curl \
libpng-dev \
libonig-dev \
libxml2-dev \
zip \
unzip \
libzip-dev \
nodejs \
npm
# Clear cache
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Install PHP extensions
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd
# Enable Apache modules
RUN a2enmod rewrite
# Install composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Copy application code
COPY . .
# Set proper permissions
RUN chgrp -R www-data /var/www/html/storage \
&& chgrp -R www-data /var/www/html/bootstrap/cache \
&& chmod -R g+w /var/www/html/storage \
&& chmod -R g+w /var/www/html/bootstrap/cache
# Install PHP dependencies
RUN composer install --no-scripts --no-autoloader
# Install Node.js dependencies
RUN npm install
# Copy Apache virtual host configuration
COPY apache-config.conf /etc/apache2/sites-available/000-default.conf
# Expose port for php artisan serve
EXPOSE 8000:80
# Start Apache
CMD ["apache2-foreground"]