initial dagster setup
This commit is contained in:
parent
af2213f0ab
commit
7791d034ae
8 changed files with 232 additions and 0 deletions
20
Dockerfile_dagster
Normal file
20
Dockerfile_dagster
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Dagster libraries to run both dagster-webserver and the dagster-daemon. Does not
|
||||
# need to have access to any pipeline code.
|
||||
|
||||
FROM python:3.10-slim
|
||||
|
||||
RUN pip install \
|
||||
dagster \
|
||||
dagster-graphql \
|
||||
dagster-webserver \
|
||||
dagster-postgres \
|
||||
dagster-docker
|
||||
|
||||
# Set $DAGSTER_HOME and copy dagster instance and workspace YAML there
|
||||
ENV DAGSTER_HOME=/opt/dagster/dagster_home/
|
||||
|
||||
RUN mkdir -p $DAGSTER_HOME
|
||||
|
||||
COPY dagster.yaml workspace.yaml $DAGSTER_HOME
|
||||
|
||||
WORKDIR $DAGSTER_HOME
|
||||
Loading…
Add table
Add a link
Reference in a new issue