FROM httpd:alpine
COPY . /usr/local/apache2/htdocs/

# Set appropriate permissions for the web server to serve static files
RUN chown -R www-data:www-data /usr/local/apache2/htdocs/
