Files
peikarband/docker/Dockerfile
Ehsan.Asadi 12aba3df78
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix(docker): remove npm run build and fix PYTHONPATH | ApprovalToken: 1767140602
- Remove npm run build (reflex export already builds frontend)
- Fix PYTHONPATH ENV to avoid undefined variable warning
- Only install npm dependencies, don't run build script
- Fixes 'Missing script: build' error
2025-12-31 03:53:22 +03:30

171 lines
5.4 KiB
Docker

# Dockerfile - Peikarband Landing Application
# Optimized multi-stage build using base image
# Build arguments
ARG BASE_IMAGE=hub.peikarband.ir/peikarband/landing:base
ARG VERSION=latest
ARG BUILD_DATE
# ============================================
# Stage 1: Builder (using base image)
# ============================================
FROM ${BASE_IMAGE} AS builder
LABEL stage=builder
LABEL maintainer="Peikarband DevOps <devops@peikarband.ir>"
WORKDIR /build
# Base image already has:
# - Python 3.11
# - Node.js 20
# - bun
# - gcc, g++, make, curl, ca-certificates
# Verify tools are available
RUN echo "=== Build Environment ===" && \
python --version && \
node --version && \
npm --version && \
bun --version && \
echo "========================"
# ============================================
# Python Dependencies
# ============================================
# Copy Python requirements first (for layer caching)
COPY peikarband/requirements.txt .
# Install Python dependencies
RUN --mount=type=cache,target=/root/.cache/pip \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# ============================================
# Frontend Build (Reflex)
# ============================================
# Copy source code
COPY peikarband/ .
# Set PYTHONPATH to include /build so Reflex can find the app
ENV PYTHONPATH=/build
# Initialize Reflex and build frontend
RUN reflex init --loglevel debug || true && \
reflex export --frontend-only --no-zip --loglevel debug || echo "Export completed with warnings"
# Install npm dependencies if .web directory exists
# Note: reflex export already builds the frontend, we just need to install deps
RUN if [ -d "/build/.web" ] && [ -f "/build/.web/package.json" ]; then \
echo "Found .web directory with package.json, installing dependencies..." && \
cd /build/.web && \
# Remove any existing .npmrc that might override registry
rm -f .npmrc && \
# Set npm registry to official registry
npm config set registry https://registry.npmjs.org/ && \
npm config set fetch-retry-mintimeout 20000 && \
npm config set fetch-retry-maxtimeout 120000 && \
npm config set fetch-retries 5 && \
npm config set fetch-timeout 300000 && \
# Verify registry is set correctly
echo "Using npm registry: $(npm config get registry)" && \
# Install dependencies (reflex export already built the frontend)
if [ -f "package-lock.json" ]; then \
npm ci --prefer-offline --no-audit --loglevel verbose || \
(echo "npm ci failed, retrying with npm install..." && npm install --prefer-offline --no-audit --loglevel verbose); \
else \
echo "package-lock.json not found, using npm install..." && \
npm install --prefer-offline --no-audit --loglevel verbose; \
fi && \
echo "Dependencies installed successfully"; \
else \
echo "Warning: .web directory or package.json not found, skipping npm install"; \
fi
# ============================================
# Stage 2: Runtime (using base image for Node.js)
# ============================================
FROM ${BASE_IMAGE} AS runtime
LABEL org.opencontainers.image.title="Peikarband Landing"
LABEL org.opencontainers.image.description="Peikarband hosting platform landing page"
LABEL org.opencontainers.image.vendor="Peikarband"
LABEL org.opencontainers.image.version="${VERSION}"
LABEL org.opencontainers.image.created="${BUILD_DATE}"
# Create non-root user
RUN groupadd -r peikarband && \
useradd -r -g peikarband -u 1000 -m -s /bin/bash peikarband
WORKDIR /app
# Base image already has everything we need:
# - Python 3.11
# - Node.js 20
# - curl, ca-certificates
# - tini (for proper init)
# No additional packages needed!
# Copy Python dependencies from builder
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
COPY --from=builder /usr/local/bin /usr/local/bin
# Copy application code
COPY --from=builder --chown=peikarband:peikarband /build /app
# Create necessary directories
RUN mkdir -p /app/data /app/logs /app/uploaded_files && \
chown -R peikarband:peikarband /app
# Set proper permissions
RUN chmod -R 755 /app && \
chmod -R 777 /app/data /app/logs /app/uploaded_files
# Environment variables
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
PYTHONPATH=/app \
PATH="/app/.venv/bin:$PATH" \
REFLEX_DIR=/app \
NODE_ENV=production
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
CMD curl -f http://localhost:${PORT:-3000}/_health || exit 1
# Switch to non-root user
USER peikarband
# Expose port
EXPOSE 3000 8000
# Use tini as init system
ENTRYPOINT ["/usr/bin/tini", "--"]
# Start application
CMD ["reflex", "run", "--env", "prod", "--loglevel", "info"]
# ============================================
# Build Information
# ============================================
ARG GIT_COMMIT
ARG GIT_BRANCH
ARG BUILD_NUMBER
LABEL git.commit="${GIT_COMMIT}"
LABEL git.branch="${GIT_BRANCH}"
LABEL build.number="${BUILD_NUMBER}"
LABEL build.date="${BUILD_DATE}"
# ============================================
# Multi-Architecture Support
# ============================================
# This Dockerfile supports:
# - linux/amd64
# - linux/arm64 (with appropriate base image)
#
# Build with:
# docker buildx build --platform linux/amd64,linux/arm64 .