Update
This commit is contained in:
@@ -2,27 +2,19 @@
|
||||
|
||||
APP_DIR=/var/www/app
|
||||
|
||||
# Vérifie si le repo existe
|
||||
if [ ! -d "$APP_DIR/.git" ]; then
|
||||
echo "📥 Aucun projet trouvé. Clonage..."
|
||||
git clone https://oauth2:${GIT_TOKEN}@${GIT_REPO} $APP_DIR
|
||||
else
|
||||
echo "🔄 Projet existant. Pull..."
|
||||
cd $APP_DIR
|
||||
git pull
|
||||
fi
|
||||
|
||||
cd $APP_DIR
|
||||
|
||||
# Permissions sur storage et cache
|
||||
mkdir -p storage bootstrap/cache
|
||||
chown -R www-data:www-data storage bootstrap/cache
|
||||
chmod -R 775 storage bootstrap/cache
|
||||
|
||||
# Composer & artisan
|
||||
composer install --no-interaction --prefer-dist
|
||||
php artisan key:generate --force
|
||||
php artisan migrate --force
|
||||
php artisan config:cache
|
||||
|
||||
exec php-fpm
|
||||
|
||||
@@ -1,18 +1,14 @@
|
||||
FROM php:8.4-fpm
|
||||
|
||||
# Install dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
git unzip libzip-dev libpng-dev libonig-dev \
|
||||
&& docker-php-ext-install pdo_mysql zip
|
||||
|
||||
# Install composer
|
||||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||
|
||||
# Copy entrypoint
|
||||
COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh
|
||||
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||
|
||||
# Working directory
|
||||
WORKDIR /var/www/app
|
||||
|
||||
ENTRYPOINT ["entrypoint.sh"]
|
||||
|
||||
Reference in New Issue
Block a user