mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
35 lines
1.0 KiB
Docker
35 lines
1.0 KiB
Docker
FROM composer as composer
|
|
|
|
# Copy everything from project root into composer container's working dir
|
|
COPY . /app
|
|
|
|
# Run composer to build dependencies in vendor folder
|
|
RUN set -xe \
|
|
&& composer install --no-scripts --no-suggest --no-interaction --prefer-dist --optimize-autoloader \
|
|
&& composer dump-autoload --optimize --classmap-authoritative
|
|
|
|
FROM php:7.4.0-fpm-alpine
|
|
|
|
# Use the default production configuration
|
|
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
|
|
|
RUN apk add --no-cache libpng-dev libxml2-dev oniguruma-dev && \
|
|
docker-php-ext-install bcmath ctype json gd mbstring pdo pdo_mysql tokenizer xml
|
|
|
|
# Set container's working dir
|
|
WORKDIR /app
|
|
|
|
# Copy everything from project root into php container's working dir
|
|
COPY . /app
|
|
|
|
# Copy vendor folder from composer container into php container
|
|
COPY --from=composer /app/vendor /app/vendor
|
|
|
|
RUN php artisan config:cache && \
|
|
chmod -R 755 storage bootstrap/cache && \
|
|
chown -R www-data:www-data storage
|
|
|
|
EXPOSE 9000
|
|
CMD ["php-fpm", "--nodaemonize"]
|
|
|