mirror of
https://github.com/pelican-dev/panel.git
synced 2026-02-23 19:08:57 +03:00
Co-authored-by: Charles <charles@pelican.dev> Co-authored-by: Boy132 <Boy132@users.noreply.github.com>
115 lines
3.9 KiB
Docker
115 lines
3.9 KiB
Docker
# syntax=docker.io/docker/dockerfile:1.13-labs
|
|
# Pelican Development Dockerfile
|
|
|
|
FROM --platform=$TARGETOS/$TARGETARCH php:8.4-fpm-alpine AS base
|
|
|
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
|
|
RUN install-php-extensions bcmath gd intl zip pcntl pdo_mysql pdo_pgsql bz2
|
|
|
|
RUN rm /usr/local/bin/install-php-extensions
|
|
|
|
# ================================
|
|
# Stage 1-1: Composer Install
|
|
# ================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH base AS composer
|
|
|
|
WORKDIR /build
|
|
|
|
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
|
|
|
|
# Copy bare minimum to install Composer dependencies
|
|
COPY composer.json composer.lock ./
|
|
|
|
RUN composer install --no-dev --no-interaction --no-autoloader --no-scripts
|
|
|
|
# ================================
|
|
# Stage 1-2: Yarn Install
|
|
# ================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH node:20-alpine AS yarn
|
|
|
|
WORKDIR /build
|
|
|
|
# Copy bare minimum to install Yarn dependencies
|
|
COPY package.json yarn.lock ./
|
|
|
|
RUN yarn config set network-timeout 300000 \
|
|
&& yarn install --frozen-lockfile
|
|
|
|
# ================================
|
|
# Stage 2-1: Composer Optimize
|
|
# ================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH composer AS composerbuild
|
|
|
|
# Copy full code to optimize autoload
|
|
COPY --exclude=docker/ . ./
|
|
|
|
RUN composer dump-autoload --optimize
|
|
|
|
# ================================
|
|
# Stage 2-2: Build Frontend Assets
|
|
# ================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH yarn AS yarnbuild
|
|
|
|
WORKDIR /build
|
|
|
|
# Copy full code
|
|
COPY --exclude=docker/ . ./
|
|
COPY --from=composer /build .
|
|
|
|
RUN yarn run build
|
|
|
|
# ================================
|
|
# Stage 5: Build Final Application Image
|
|
# ================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH base AS final
|
|
|
|
WORKDIR /var/www/html
|
|
|
|
# Install additional required libraries
|
|
RUN apk add --no-cache \
|
|
# packages for running the panel
|
|
caddy ca-certificates supervisor supercronic fcgi coreutils \
|
|
# required for installing plugins. Pulled from https://github.com/pelican-dev/panel/pull/2034
|
|
zip unzip 7zip bzip2-dev yarn git
|
|
|
|
# Copy composer binary for runtime plugin dependency management
|
|
COPY --from=composer /usr/local/bin/composer /usr/local/bin/composer
|
|
COPY --chown=root:www-data --chmod=770 --from=composerbuild /build .
|
|
COPY --chown=root:www-data --chmod=770 --from=yarnbuild /build/public ./public
|
|
|
|
# Create and remove directories
|
|
RUN mkdir -p /pelican-data/storage /pelican-data/plugins /var/run/supervisord \
|
|
&& rm -rf /var/www/html/plugins \
|
|
# Symlinks for env, database, storage, and plugins
|
|
&& ln -s /pelican-data/.env /var/www/html/.env \
|
|
&& ln -s /pelican-data/database/database.sqlite ./database/database.sqlite \
|
|
&& ln -s /pelican-data/storage /var/www/html/public/storage \
|
|
&& ln -s /pelican-data/storage /var/www/html/storage/app/public \
|
|
&& ln -s /pelican-data/plugins /var/www/html \
|
|
# Allow www-data write permissions where necessary
|
|
&& chown -R www-data: /pelican-data .env ./storage ./plugins ./bootstrap/cache /var/run/supervisord /var/www/html/public/storage \
|
|
&& chmod -R 770 /pelican-data ./storage ./bootstrap/cache /var/run/supervisord \
|
|
&& chown -R www-data: /usr/local/etc/php/ /usr/local/etc/php-fpm.d/ /var/www/html/composer.json /var/www/html/composer.lock
|
|
|
|
# Configure Supervisor
|
|
COPY docker/supervisord.conf /etc/supervisord.conf
|
|
COPY docker/Caddyfile /etc/caddy/Caddyfile
|
|
# Add Laravel scheduler to crontab
|
|
COPY docker/crontab /etc/crontabs/crontab
|
|
|
|
COPY docker/entrypoint.sh /entrypoint.sh
|
|
COPY docker/healthcheck.sh /healthcheck.sh
|
|
|
|
HEALTHCHECK --interval=5m --timeout=10s --start-period=5s --retries=3 \
|
|
CMD /bin/ash /healthcheck.sh
|
|
|
|
EXPOSE 80 443
|
|
|
|
VOLUME /pelican-data
|
|
|
|
USER www-data
|
|
|
|
ENTRYPOINT [ "/bin/ash", "/entrypoint.sh" ]
|
|
CMD [ "supervisord", "-n", "-c", "/etc/supervisord.conf" ]
|