Files
finance/dockerfile
T

19 lines
375 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ... mevcut kod ...
FROM php:8.1-fpm
# Gerekli uzantıları yükleyin
RUN docker-php-ext-install pdo pdo_mysql
# Composer'ı yükleyin
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Çalışma dizinini ayarlayın
WORKDIR /var/www
# Uygulama dosyalarını kopyalayın
COPY . .
# Bağımlılıkları yükleyin
RUN composer install
# ... mevcut kod ...