Remove pdo_sqlite, use MySQL
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 2m57s

This commit is contained in:
PeterChrz 2026-03-31 15:27:07 -04:00
parent a21de0ddca
commit 65cafdc436
Signed by untrusted user who does not match committer: pch
GPG key ID: 8F0826ECF7302C63

View file

@ -26,7 +26,6 @@ COPY package.json package-lock.json ./
RUN npm ci RUN npm ci
COPY . . COPY . .
COPY --from=composer-builder /app/vendor ./vendor COPY --from=composer-builder /app/vendor ./vendor
RUN ls vendor/livewire/flux/dist/ || echo "MISSING: flux dist not found"
RUN npm run build RUN npm run build
# Stage 3: Production image # Stage 3: Production image
@ -47,7 +46,6 @@ RUN apk add --no-cache \
&& docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp \ && docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp \
&& docker-php-ext-install -j$(nproc) \ && docker-php-ext-install -j$(nproc) \
pdo_mysql \ pdo_mysql \
pdo_sqlite \
mbstring \ mbstring \
exif \ exif \
pcntl \ pcntl \