Skip to content

Commit e6e336d

Browse files
authored
chore: fix docker builds for examples (numaproj#207)
Signed-off-by: Sidhant Kohli <[email protected]>
1 parent cbdec86 commit e6e336d

File tree

15 files changed

+15
-0
lines changed

15 files changed

+15
-0
lines changed

examples/batchmap/flatmap/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/map/even_odd/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/map/flatmap/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/map/forward_message/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/map/multiproc_map/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/mapstream/flatmap_stream/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/reduce/counter/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/reducestream/counter/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/reducestream/sum/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/sideinput/simple_sideinput/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/sideinput/simple_sideinput/udf/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/sink/async_log/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/sink/log/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/source/simple_source/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/sourcetransform/event_time_filter/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

0 commit comments

Comments
 (0)