Files
ukaiautomation/Dockerfile

34 lines
849 B
Docker
Raw Normal View History

FROM php:8.1-apache
# Install required packages
RUN apt-get update && apt-get install -y \
msmtp \
msmtp-mta \
mailutils \
&& rm -rf /var/lib/apt/lists/*
# Enable Apache modules
RUN a2enmod rewrite headers
# Set ServerName to avoid warnings
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
# Configure Apache for our application
COPY apache-config.conf /etc/apache2/sites-available/000-default.conf
# Copy application files
COPY . /var/www/html/
# Configure msmtp
COPY .msmtprc /etc/msmtprc
RUN chmod 600 /etc/msmtprc
RUN echo "sendmail_path = /usr/bin/msmtp -t" > /usr/local/etc/php/conf.d/mail.ini
# Set proper permissions
RUN chown -R www-data:www-data /var/www/html
RUN chmod -R 755 /var/www/html
# Create logs directory
RUN mkdir -p /var/www/html/logs && chown www-data:www-data /var/www/html/logs
EXPOSE 80