30 lines
847 B
Docker
30 lines
847 B
Docker
FROM php:8.2-fpm-alpine
|
|
|
|
RUN apk add --no-cache nginx nodejs npm supervisor \
|
|
&& docker-php-ext-install pdo pdo_mysql mysqli bcmath pcntl
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
|
RUN composer install --optimize-autoloader
|
|
|
|
RUN npm ci && \
|
|
VITE_REVERB_HOST=reverb.muronegro.cloud \
|
|
VITE_REVERB_PORT=443 \
|
|
VITE_REVERB_SCHEME=https \
|
|
VITE_REVERB_APP_KEY=fmoknd2swp3clsqfbdpg \
|
|
npm run build
|
|
|
|
RUN mkdir -p storage/framework/sessions storage/framework/views storage/framework/cache storage/app/livewire-tmp \
|
|
&& chmod -R 775 storage bootstrap/cache
|
|
|
|
RUN php artisan storage:link
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY supervisord.conf /etc/supervisord.conf
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]
|