add debug dev
This commit is contained in:
@@ -99,6 +99,9 @@ RUN mkdir -p /usr/local/bin && \
|
||||
COPY docker/production/etc/php/conf.d/zzz-custom-php.ini /usr/local/etc/php/conf.d/zzz-custom-php.ini
|
||||
ENV PHP_OPCACHE_ENABLE=1
|
||||
|
||||
# Configure entrypoint
|
||||
COPY --chmod=755 docker/production/entrypoint.d/ /usr/local/bin/entrypoint.d/
|
||||
|
||||
# Copy application files from previous stages
|
||||
COPY --from=base --chown=www-data:www-data /var/www/html/vendor ./vendor
|
||||
COPY --from=static-assets --chown=www-data:www-data /app/public/build ./public/build
|
||||
|
6
docker/production/entrypoint.d/99-debug-mode.sh
Normal file
6
docker/production/entrypoint.d/99-debug-mode.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
# Debug mode
|
||||
if [ "$DEBUG" = "true" ]; then
|
||||
echo "Debug mode is enabled"
|
||||
echo "Installing development dependencies..."
|
||||
composer install --dev --no-scripts
|
||||
fi
|
Reference in New Issue
Block a user