Skip to content

Commit

Permalink
chore: fix reduce-sideinput dockerfile (#127)
Browse files Browse the repository at this point in the history
Signed-off-by: a3hadi <[email protected]>
  • Loading branch information
ayildirim21 authored Apr 23, 2024
1 parent 38f9fa2 commit c103eea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
"pkg/sourcer/examples/simple_source", "pkg/sourcetransformer/examples/assign_event_time", "pkg/sourcetransformer/examples/event_time_filter",
"pkg/sinker/examples/fallback", "pkg/sideinput/examples/map_sideinput", "pkg/sideinput/examples/reduce_sideinput",
"pkg/sideinput/examples/sideinput_function", "pkg/sideinput/examples/simple_source_with_sideinput",
"pkg/sideinput/examples/sink_sideinput", "pkg/sinker/examples/redis-sink"
"pkg/sideinput/examples/sink_sideinput", "pkg/sinker/examples/redis-sink", "pkg/sideinput/examples/map_sideinput/udf",
"pkg/sideinput/examples/reduce_sideinput/udf"
]

steps:
Expand Down
2 changes: 1 addition & 1 deletion pkg/sideinput/examples/reduce_sideinput/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Vertex spec for the UDF vertex:
- name: si-e2e
udf:
container:
image: "quay.io/numaio/numaproj-contrib/reduce-sideinput-udf:stable"
image: "quay.io/numaio/numaflow-go/reduce-sideinput-udf:stable"
imagePullPolicy: Always
groupBy:
window:
Expand Down
2 changes: 1 addition & 1 deletion pkg/sideinput/examples/reduce_sideinput/udf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk update && apk upgrade && \
apk --no-cache add tzdata

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

####################################################################################################
# udf-sideinput
Expand Down

0 comments on commit c103eea

Please sign in to comment.