10 lines
393 B
Docker
10 lines
393 B
Docker
FROM php:8.2-apache
|
|
|
|
RUN a2enmod rewrite
|
|
|
|
COPY ./mocha-php/mocha-php/src/mocha-php /var/www/html
|
|
COPY ./mocha-php/phast/lib/phast/server /usr/local/lib/php/lib/phast
|
|
COPY ./mocha-php/phast/lib/phast/client/scripts /var/www/html/scripts/phast
|
|
COPY ./mocha-dotnet/mocha-common/mocha-common/data/uploads /var/mocha/uploads
|
|
COPY ./uwt-web/src/uwt-web/fonts/awesome/webfonts /var/www/html/webfonts
|