mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-03-28 17:43:05 +01:00
49 lines
1.0 KiB
Docker
49 lines
1.0 KiB
Docker
# Stage 1: Build frontend
|
|
FROM node:20-slim AS frontend-builder
|
|
|
|
ARG COMMIT_HASH=unknown
|
|
|
|
WORKDIR /build
|
|
|
|
COPY frontend/package.json frontend/package-lock.json frontend/.npmrc ./
|
|
RUN npm ci
|
|
|
|
COPY frontend/ ./
|
|
RUN VITE_COMMIT_HASH=${COMMIT_HASH} npm run build
|
|
|
|
|
|
# Stage 2: Python runtime
|
|
FROM python:3.12-slim
|
|
|
|
ARG COMMIT_HASH=unknown
|
|
|
|
WORKDIR /app
|
|
|
|
ENV COMMIT_HASH=${COMMIT_HASH}
|
|
|
|
# Install uv
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
|
|
|
|
# Copy dependency files first for layer caching
|
|
COPY pyproject.toml uv.lock ./
|
|
|
|
# Install dependencies (no dev/test deps)
|
|
RUN uv sync --frozen --no-dev
|
|
|
|
# Copy application code
|
|
COPY app/ ./app/
|
|
|
|
# Copy license attributions
|
|
COPY LICENSES.md ./
|
|
|
|
# Copy built frontend from first stage
|
|
COPY --from=frontend-builder /build/dist ./frontend/dist
|
|
|
|
# Create data directory for SQLite database
|
|
RUN mkdir -p /app/data
|
|
|
|
EXPOSE 8000
|
|
|
|
# Run the application (we retain root for max compatibility)
|
|
CMD ["uv", "run", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|