V31 Fresh Install User Module Error

Hello,
I am new to Gibbon and have installed the latest version ( as of this writing, V31). I don’t know the effects of this error on the system, and what to do to fix it too.


module: user
error: Module error due to incorrect manifest file or folder name.

I am using Docker in my installation using a Dockerfile by cloning the repository

FROM php:8.2

WORKDIR /var/www/html

RUN apt-get update && apt-get install -y \
    libpng-dev \
    libzip-dev \
    unzip \
    git \
    curl \
    libicu-dev \
    libgettextpo-dev \
    && docker-php-ext-install \
       pdo_mysql \
       mysqli \
       zip \
       gd \
       int \
       bcmath \
       opcache \
       gettext

RUN a2enmod rewrite

RUN curl -sS https://getcomposer.org/installer | php \
    && mv composer.phar /usr/local/bin/composer \
    && chmod +x /usr/local/bin/composer

# clones the latest version
RUN git clone https://github.com/GibbonEdu/core.git

RUN git config --global --add safe.directory /var/www/html

RUN composer install --no-dev --optimize-autoloader

RUN chown -R www-data:www-data /var/www/html

EXPOSE 80

CMD ["apache2-foreground"]

I wanted to use a more stable tag, but I have no clue how to do it.

Hi @niceatma
The error you are seeing on the screen is actually not an error but some work in progress. Since you have turned on cutting edge code, you receive the latest code even while some progress is going on in the system. The stable version is v30 and it can be downloaded from Download - Gibbon. Thanks!