- New stacks: beads-server, hermes-agent - Terragrunt tiers.tf for infra, phpipam, status-page - Secrets symlinks for vault, phpipam, hermes-agent - Scripts: cluster_manager, image_pull, containerd pullthrough setup - Frigate config, audiblez-web app source, n8n workflows dir - Claude agent: service-upgrade, reference: upgrade-config.json - Removed: claudeception skill, excalidraw empty submodule, temp listings [ci skip] Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
795 B
Docker
35 lines
795 B
Docker
FROM viktorbarzin/audiblez:latest
|
|
|
|
# Install Node.js for building frontend
|
|
RUN apt-get update && \
|
|
apt-get install -y curl && \
|
|
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
|
|
apt-get install -y nodejs && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
# Build frontend
|
|
COPY frontend/package.json frontend/package-lock.json* ./frontend/
|
|
WORKDIR /app/frontend
|
|
RUN npm install
|
|
|
|
COPY frontend/ ./
|
|
RUN npm run build
|
|
|
|
# Install backend dependencies
|
|
WORKDIR /app/backend
|
|
COPY backend/requirements.txt ./
|
|
RUN pip install --no-cache-dir --break-system-packages -r requirements.txt
|
|
|
|
COPY backend/ ./
|
|
|
|
# Copy voice samples
|
|
COPY samples/ /app/samples/
|
|
|
|
WORKDIR /app/backend
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|