mirror of
https://codeberg.org/angestoepselt/refund-form.git
synced 2025-05-24 14:46:16 +00:00
7 lines
No EOL
223 B
Docker
7 lines
No EOL
223 B
Docker
FROM php:7-apache
|
|
COPY 000-default.conf /etc/apache2/sites-available/000-default.conf
|
|
RUN a2enmod rewrite
|
|
COPY app /var/www/
|
|
RUN chown -R www-data:www-data /var/www
|
|
EXPOSE 80
|
|
CMD ["/usr/sbin/apache2ctl", "-D", "FOREGROUND"] |