6 lines
182 B
Docker
Executable File
6 lines
182 B
Docker
Executable File
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/
|