Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Sidhant Kohli <[email protected]>
  • Loading branch information
kohlisid committed Jul 12, 2024
1 parent 61195e5 commit 37d5647
Show file tree
Hide file tree
Showing 17 changed files with 20 additions and 16 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches: [ main ]
tags:
- '*'
pull_request:
branches: [ "main" ]
tags:
- '*'

jobs:
docker_publish:
Expand Down
2 changes: 1 addition & 1 deletion examples/map/even_odd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/map/flatmap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/map/forward_message/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/map/multiproc_map/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/mapstream/flatmap_stream/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/reduce/asyncio_reduce/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN poetry install --no-cache --no-root && \
ADD . /app
WORKDIR /app

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["/app/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/reduce/counter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/reducestream/counter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/reducestream/sum/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/sideinput/simple_sideinput/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/sideinput/simple_sideinput/udf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/sink/async_log/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/sink/log/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/source/async_source/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/source/simple_source/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down
2 changes: 1 addition & 1 deletion examples/sourcetransform/event_time_filter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ WORKDIR $EXAMPLE_PATH
RUN poetry install --no-cache --no-root && \
rm -rf ~/.cache/pypoetry/

RUN chmod +x entry.sh
RUN chmod +x $EXAMPLE_PATH/entry.sh

ENTRYPOINT ["/dumb-init", "--"]
CMD ["sh", "-c", "$EXAMPLE_PATH/entry.sh"]
Expand Down

0 comments on commit 37d5647

Please sign in to comment.