# syntax=docker/dockerfile:1 # Stage 1: build the Vue frontend (also type-checks via `vue-tsc` in the build script). FROM node:22-alpine AS build-frontend WORKDIR /build COPY frontend/package.json frontend/package-lock.json* ./ RUN npm ci --quiet COPY frontend/ . RUN npm run build # Stage 2: Python runtime. FROM python:3.12-slim AS runtime WORKDIR /app COPY pyproject.toml . COPY src/ src/ RUN --mount=type=cache,target=/root/.cache/pip \ pip install . # Bake the built SPA into the package's static dir (served by app.py). PYTHONPATH # points at /app/src so the runtime imports this source tree (with static/ present), # not the pip-installed copy. COPY --from=build-frontend /build/dist/ src/thoughtsync/static/ COPY alembic.ini . COPY alembic/ alembic/ # The clients this server hands out — the APK and all four desktop bundles. CI # fetches the newest published build of each into ./client immediately before this # runs (packaging/fetch-clients.sh), so both image tags ship a full set and a # `docker compose pull` delivers new ones with no file copying by hand. # # ~104 MB of this image is that set, almost all of it the AppImage. # # Fetched by the JOB rather than here on purpose: the releases are private, and a # token used inside a build ends up in the build context or a layer. # # LAST of the COPYs, deliberately: this directory changes on every build, so # putting it above the `pip install` layer would invalidate that layer every time. # # The directory is tracked (client/.keep) so this COPY cannot fail on a tree where # that step never ran. An image with no clients — or with some and not others — is # a supported state: the server advertises what it has and the web UI hides the # rest (client_dist.py). COPY client/ src/thoughtsync/client/ ENV PYTHONPATH=/app/src ARG BUILD_VERSION=dev ENV APP_VERSION=$BUILD_VERSION EXPOSE 5000 # Wait for the database, run migrations, then serve. The DB wait keeps a briefly # slow/unready database from crash-looping the container. Family convention # (rule 82): schema is built by real migrations, never metadata.create_all. CMD ["sh", "-c", "python -m thoughtsync.dbwait && alembic upgrade head && hypercorn 'thoughtsync.app:create_app()' --bind 0.0.0.0:5000 --keep-alive 600"]