Files
template-code-location/Dockerfile
2026-04-15 05:59:00 +00:00

14 lines
293 B
Docker

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"]