File tree 6 files changed +17
-4
lines changed
week_2/dagster_ucr/project
6 files changed +17
-4
lines changed Original file line number Diff line number Diff line change
1
+ ARG PY_VERSION=3.8
2
+
3
+ FROM gitpod/workspace-python-${PY_VERSION}:latest
4
+
5
+ RUN pip install "poetry==1.1.12"
6
+
7
+ COPY poetry.lock pyproject.toml /
8
+
9
+ RUN poetry config virtualenvs.create false \
10
+ && poetry install --no-interaction --no-ansi
Original file line number Diff line number Diff line change
1
+ image :
2
+ file : .gitpod.Dockerfile
3
+
1
4
ports :
2
5
- port : 3000
3
6
onOpen : open-browser
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def week_2_pipeline():
38
38
"bucket" : "dagster" ,
39
39
"access_key" : "test" ,
40
40
"secret_key" : "test" ,
41
- "endpoint_url" : "http://host.docker.internal :4566" ,
41
+ "endpoint_url" : "http://localstack :4566" ,
42
42
}
43
43
},
44
44
"redis" : {
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def week_3_pipeline():
55
55
"bucket" : "dagster" ,
56
56
"access_key" : "test" ,
57
57
"secret_key" : "test" ,
58
- "endpoint_url" : "http://host.docker.internal :4566" ,
58
+ "endpoint_url" : "http://localstack :4566" ,
59
59
}
60
60
},
61
61
"redis" : {
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ def resource_config():
67
67
"bucket" : "dagster" ,
68
68
"access_key" : "test" ,
69
69
"secret_key" : "test" ,
70
- "endpoint_url" : "http://host.docker.internal :4566" ,
70
+ "endpoint_url" : "http://localstack :4566" ,
71
71
}
72
72
},
73
73
"redis" : {
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ def resource_config():
43
43
"bucket" : "dagster" ,
44
44
"access_key" : "test" ,
45
45
"secret_key" : "test" ,
46
- "endpoint_url" : "http://host.docker.internal :4566" ,
46
+ "endpoint_url" : "http://localstack :4566" ,
47
47
}
48
48
},
49
49
"redis" : {
You can’t perform that action at this time.
0 commit comments