-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
39 lines (27 loc) · 821 Bytes
/
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
FROM php:8.0-apache
# Install dependencies
RUN apt-get update && apt-get install -y \
libzip-dev \
zip \
unzip \
&& docker-php-ext-install zip mysqli \
&& pecl install redis \
&& docker-php-ext-enable redis
# Enable Apache mod_rewrite
RUN a2enmod rewrite
# Copy composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Set the working directory
WORKDIR /var/www/html
# Copy composer.json and install dependencies
COPY composer.json ./
# Set the environment variable to allow running as root
ENV COMPOSER_ALLOW_SUPERUSER=1
# Copy the rest of the application files
COPY . .
# Set permissions for the entry point script
RUN chmod +x ./InstallComposerDependencies.sh
# Install any additional PHP extensions
RUN ./InstallComposerDependencies.sh
# Expose port 80
EXPOSE 80