chore(docs): remove comment styling

This commit is contained in:
Stijnvandenbroek
2026-03-05 10:41:44 +00:00
parent ca5cb9e777
commit c6f5adf621
5 changed files with 21 additions and 22 deletions

View File

@@ -1,4 +1,4 @@
# ── Usercode: full application (gRPC server) ─────────────────────────
# Usercode: full application (gRPC server)
FROM python:3.12-slim AS usercode
WORKDIR /app
@@ -21,15 +21,14 @@ ENV DAGSTER_HOME=/app/dagster_home
RUN chmod +x /app/entrypoint.sh
ENTRYPOINT ["/app/entrypoint.sh"]
# ── Infrastructure: webserver / daemon (no user code) ────────────────
# Infrastructure: webserver / daemon (no user code)
FROM python:3.12-slim AS dagster-infra
WORKDIR /app
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
# Only the Dagster packages needed to run webserver / daemon and reach
# the metadata store. No application code is installed.
# No application code, only dagster packages for webserver/daemon
RUN uv pip install --system dagster dagster-webserver dagster-postgres
COPY dagster_home/ ./dagster_home/