Differential D4920 Diff 24623 python_modules/automation/automation/docker/images/buildkite-unit-snapshot-builder/Dockerfile
Changeset View
Changeset View
Standalone View
Standalone View
python_modules/automation/automation/docker/images/buildkite-unit-snapshot-builder/Dockerfile
ARG BASE_IMAGE | ARG BASE_IMAGE | ||||
FROM "${BASE_IMAGE}" | FROM "${BASE_IMAGE}" | ||||
RUN apt-get update -y \ | RUN apt-get update -y \ | ||||
&& apt-get install -y cron git | && apt-get install -y cron git | ||||
# Last git commit in dagster that build the snapshot files | # Last git commit in dagster that build the snapshot files | ||||
RUN git clone https://github.com/dagster-io/dagster.git dagster \ | RUN git clone https://github.com/dagster-io/dagster.git dagster \ | ||||
&& cd dagster \ | && cd dagster \ | ||||
&& git checkout 6cdb258f3e7b6c92d5b6cf530d47a08f6f7a0e8d | && git checkout 5f7e7a625175eb09319516fe395004774f38793c | ||||
# for some reason this is only failing in the 3.8 image | # for some reason this is only failing in the 3.8 image | ||||
# RUN cd dagster && git checkout "${SNAPSHOT_GIT_HASH}" | # RUN cd dagster && git checkout "${SNAPSHOT_GIT_HASH}" | ||||
RUN cd dagster/python_modules \ | RUN cd dagster/python_modules \ | ||||
&& pip install \ | && pip install \ | ||||
-e dagster \ | -e dagster \ | ||||
-e dagster-graphql \ | -e dagster-graphql \ | ||||
Show All 10 Lines |