File size: 547 Bytes
34664bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | FROM php:8.2-apache
# Copy source code to the apache web root
COPY . /var/www/html/
# Enable apache rewrite module if needed
RUN a2enmod rewrite
# Set permissions
RUN chown -R www-data:www-data /var/www/html
# Expose port 7860 (standard for Hugging Face Spaces)
EXPOSE 7860
# Configure Apache to listen on port 7860
RUN sed -i 's/Listen 80/Listen 7860/' /etc/apache2/ports.conf
RUN sed -i 's/<VirtualHost \*:80>/<VirtualHost *:7860>/' /etc/apache2/sites-available/000-default.conf
# Start Apache in the foreground
CMD ["apache2-foreground"]
|