Skip to content

Commit

Permalink
feat: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePushMaker committed Dec 29, 2024
1 parent 402adc9 commit 70e4e94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ RUN apk add --update --no-cache \
docker-php-ext-install -j$(nproc) mbstring xml curl zip bcmath soap intl && \
apk del autoconf gcc g++ make


# Instalamos Composer
RUN curl -sS https://getcomposer.org/installer | php -- \
--install-dir=/usr/local/bin --filename=composer
Expand Down Expand Up @@ -61,7 +60,8 @@ COPY .env.example .env
# Creamos directorios necesarios
RUN mkdir -p /app/storage/logs

# Limpiamos cachés
# Ejecutar migraciones y luego limpiar cachés
RUN php artisan migrate --force
RUN php artisan cache:clear
RUN php artisan view:clear
RUN php artisan config:clear
Expand Down

0 comments on commit 70e4e94

Please sign in to comment.