Feature/simpl 24306

This commit is contained in:
Tamas Papp
2026-04-15 05:59:00 +00:00
parent bb95b381fe
commit 2125933d3d
9 changed files with 189 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.12-slim-bookworm
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir dagster dagster-webserver
COPY src/ src/
RUN pip install --no-cache-dir .
EXPOSE 3000
CMD ["dagster", "api", "grpc", "-h", "0.0.0.0", "-p", "3000", "-m", "template-code-location.repository"]