diff --git a/examples/batchmap/flatmap/Dockerfile b/examples/batchmap/flatmap/Dockerfile index e22a0108..20f1a820 100644 --- a/examples/batchmap/flatmap/Dockerfile +++ b/examples/batchmap/flatmap/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/map/even_odd/Dockerfile b/examples/map/even_odd/Dockerfile index c5e0217b..a2da2f81 100644 --- a/examples/map/even_odd/Dockerfile +++ b/examples/map/even_odd/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/map/flatmap/Dockerfile b/examples/map/flatmap/Dockerfile index b4ae29d1..d2ce662f 100644 --- a/examples/map/flatmap/Dockerfile +++ b/examples/map/flatmap/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/map/forward_message/Dockerfile b/examples/map/forward_message/Dockerfile index d5d36ce5..84b4bdff 100644 --- a/examples/map/forward_message/Dockerfile +++ b/examples/map/forward_message/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/map/multiproc_map/Dockerfile b/examples/map/multiproc_map/Dockerfile index 151d590f..0928c03a 100644 --- a/examples/map/multiproc_map/Dockerfile +++ b/examples/map/multiproc_map/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/mapstream/flatmap_stream/Dockerfile b/examples/mapstream/flatmap_stream/Dockerfile index ab8c1aa3..a7397526 100644 --- a/examples/mapstream/flatmap_stream/Dockerfile +++ b/examples/mapstream/flatmap_stream/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/reduce/counter/Dockerfile b/examples/reduce/counter/Dockerfile index a02f436f..a617b3fa 100644 --- a/examples/reduce/counter/Dockerfile +++ b/examples/reduce/counter/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/reducestream/counter/Dockerfile b/examples/reducestream/counter/Dockerfile index 14c7d079..de1756fd 100644 --- a/examples/reducestream/counter/Dockerfile +++ b/examples/reducestream/counter/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/reducestream/sum/Dockerfile b/examples/reducestream/sum/Dockerfile index 4f0baf67..1f715387 100644 --- a/examples/reducestream/sum/Dockerfile +++ b/examples/reducestream/sum/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/sideinput/simple_sideinput/Dockerfile b/examples/sideinput/simple_sideinput/Dockerfile index a4bce08a..ab3e3355 100644 --- a/examples/sideinput/simple_sideinput/Dockerfile +++ b/examples/sideinput/simple_sideinput/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/sideinput/simple_sideinput/udf/Dockerfile b/examples/sideinput/simple_sideinput/udf/Dockerfile index 7c6d0799..3cbd912a 100644 --- a/examples/sideinput/simple_sideinput/udf/Dockerfile +++ b/examples/sideinput/simple_sideinput/udf/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/sink/async_log/Dockerfile b/examples/sink/async_log/Dockerfile index 9fad5a38..3739ba70 100644 --- a/examples/sink/async_log/Dockerfile +++ b/examples/sink/async_log/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/sink/log/Dockerfile b/examples/sink/log/Dockerfile index 8373750b..2b2a12aa 100644 --- a/examples/sink/log/Dockerfile +++ b/examples/sink/log/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/source/simple_source/Dockerfile b/examples/source/simple_source/Dockerfile index 09ba37db..d07c719f 100644 --- a/examples/source/simple_source/Dockerfile +++ b/examples/source/simple_source/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/ diff --git a/examples/sourcetransform/event_time_filter/Dockerfile b/examples/sourcetransform/event_time_filter/Dockerfile index 6f8e60c0..3ed3480b 100644 --- a/examples/sourcetransform/event_time_filter/Dockerfile +++ b/examples/sourcetransform/event_time_filter/Dockerfile @@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH COPY ./ ./ WORKDIR $EXAMPLE_PATH +RUN poetry lock RUN poetry install --no-cache --no-root && \ rm -rf ~/.cache/pypoetry/