mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 20:41:20 -05:00
11 lines
341 B
Docker
11 lines
341 B
Docker
FROM php:7.0-apache
|
|
COPY htdocs /var/www/html
|
|
COPY htdocs/application/config/stikked.php.dist /var/www/html/application/config/stikked.php
|
|
COPY docker/replace-envvars.sh /bin/
|
|
COPY docker/docker-php-entrypoint /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/docker-php-entrypoint
|
|
|
|
EXPOSE 80
|
|
RUN a2enmod rewrite
|
|
RUN docker-php-ext-install mysqli
|