Fix container networking

This commit is contained in:
2025-10-28 17:49:23 -07:00
parent 24bdf0056e
commit 7b546df1bb
5 changed files with 111 additions and 41 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM php:8.3-apache
# Install dependencies and PHP extensions
RUN apt-get update && apt-get install -y \
libpq-dev \
curl \
&& curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
&& apt-get install -y nodejs \
&& docker-php-ext-install pdo pdo_pgsql pcntl
# Enable Apache mod_rewrite
RUN a2enmod rewrite
# Set working directory
WORKDIR /var/www/html
# Install composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer