File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN cd / && git rev-parse --short HEAD > /HEAD; exit 0
66
77# BASE image
88# ----BEGIN----
9- FROM php:8-apache AS hashtopolis-server-base
9+ FROM php:8.4 -apache AS hashtopolis-server-base
1010
1111# Enable possible build args for injecting user commands
1212ARG CONTAINER_USER_CMD_PRE
@@ -104,7 +104,7 @@ ENTRYPOINT [ "docker-entrypoint.sh" ]
104104FROM hashtopolis-server-base AS hashtopolis-server-dev
105105
106106# Setting up development requirements, install xdebug
107- RUN yes | pecl install xdebug-3.4.0beta1 && docker-php-ext-enable xdebug \
107+ RUN yes | pecl install xdebug && docker-php-ext-enable xdebug \
108108 && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \
109109 && echo "xdebug.mode = debug" >> /usr/local/etc/php/conf.d/xdebug.ini \
110110 && echo "xdebug.start_with_request = yes" >> /usr/local/etc/php/conf.d/xdebug.ini \
Original file line number Diff line number Diff line change @@ -308,6 +308,7 @@ public static function addCORSheaders(Request $request, $response) {
308308require __DIR__ . "/../../inc/apiv2/helper/getAgentBinary.routes.php " ;
309309require __DIR__ . "/../../inc/apiv2/helper/getCracksOfTask.routes.php " ;
310310require __DIR__ . "/../../inc/apiv2/helper/getFile.routes.php " ;
311+ require __DIR__ . "/../../inc/apiv2/helper/getTaskProgressImage.routes.php " ;
311312require __DIR__ . "/../../inc/apiv2/helper/getUserPermission.routes.php " ;
312313require __DIR__ . "/../../inc/apiv2/helper/importCrackedHashes.routes.php " ;
313314require __DIR__ . "/../../inc/apiv2/helper/importFile.routes.php " ;
You can’t perform that action at this time.
0 commit comments