Skip to content

Commit 6d704b7

Browse files
committed
Update kaitaistruct perl runtime
1 parent 87d67ae commit 6d704b7

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ RUN \
131131
# install perl runtime for kaitai struct
132132
RUN \
133133
cd /tmp \
134-
&& curl -LO https://github.com/kaitai-io/kaitai_struct_perl_runtime/archive/refs/tags/0.10.zip \
135-
&& unzip 0.10.zip \
136-
&& cd kaitai_struct_perl_runtime-0.10 \
134+
&& curl -LO https://github.com/kaitai-io/kaitai_struct_perl_runtime/archive/refs/tags/0.11.zip \
135+
&& unzip 0.11.zip \
136+
&& cd kaitai_struct_perl_runtime-0.11 \
137137
&& perl Makefile.PL \
138138
&& make install \
139139
&& rm -rf /tmp/*

python/Dockerfile.benchmark

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ RUN apt-get update \
77
# install perl runtime for kaitai struct
88
RUN \
99
cd /tmp \
10-
&& curl -LO https://github.com/kaitai-io/kaitai_struct_perl_runtime/archive/refs/tags/0.10.zip \
11-
&& unzip 0.10.zip \
12-
&& cd kaitai_struct_perl_runtime-0.10 \
10+
&& curl -LO https://github.com/kaitai-io/kaitai_struct_perl_runtime/archive/refs/tags/0.11.zip \
11+
&& unzip 0.11.zip \
12+
&& cd kaitai_struct_perl_runtime-0.11 \
1313
&& perl Makefile.PL \
1414
&& make install \
1515
&& rm -rf /tmp/*
@@ -19,7 +19,8 @@ ADD . /work
1919

2020
RUN pip3 install -r /work/setup_requirements.txt
2121
RUN pip3 install -r /work/requirements.txt
22-
RUN pip3 install kaitaistruct
22+
# keep in sync with perl runtime for kaitai struct!
23+
RUN pip3 install kaitaistruct==0.11.0
2324

2425
RUN pip3 install wheel setuptools
2526

0 commit comments

Comments
 (0)