Skip to content

Commit c103eea

Browse files
authored
chore: fix reduce-sideinput dockerfile (#127)
Signed-off-by: a3hadi <a3hadi@protonmail.com>
1 parent 38f9fa2 commit c103eea

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/build-push.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
"pkg/sourcer/examples/simple_source", "pkg/sourcetransformer/examples/assign_event_time", "pkg/sourcetransformer/examples/event_time_filter",
2626
"pkg/sinker/examples/fallback", "pkg/sideinput/examples/map_sideinput", "pkg/sideinput/examples/reduce_sideinput",
2727
"pkg/sideinput/examples/sideinput_function", "pkg/sideinput/examples/simple_source_with_sideinput",
28-
"pkg/sideinput/examples/sink_sideinput", "pkg/sinker/examples/redis-sink"
28+
"pkg/sideinput/examples/sink_sideinput", "pkg/sinker/examples/redis-sink", "pkg/sideinput/examples/map_sideinput/udf",
29+
"pkg/sideinput/examples/reduce_sideinput/udf"
2930
]
3031

3132
steps:

pkg/sideinput/examples/reduce_sideinput/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Vertex spec for the UDF vertex:
3535
- name: si-e2e
3636
udf:
3737
container:
38-
image: "quay.io/numaio/numaproj-contrib/reduce-sideinput-udf:stable"
38+
image: "quay.io/numaio/numaflow-go/reduce-sideinput-udf:stable"
3939
imagePullPolicy: Always
4040
groupBy:
4141
window:

pkg/sideinput/examples/reduce_sideinput/udf/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apk update && apk upgrade && \
77
apk --no-cache add tzdata
88

99
COPY dist/reduce-sideinput-udf /bin/reduce-sideinput-udf
10-
RUN chmod +x /bin/reduce_sideinput-udf
10+
RUN chmod +x /bin/reduce-sideinput-udf
1111

1212
####################################################################################################
1313
# udf-sideinput

0 commit comments

Comments
 (0)