14 lines
293 B
Docker
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"]
|