Skip to content

Commit f7aa481

Browse files
docker: Add luarocks to OSS-Fuzz base images. (#5097)
This adds luarocks to the apt-get install list in: - docker/oss-fuzz/base/Dockerfile - docker/oss-fuzz/base/ubuntu-20-04.Dockerfile - docker/oss-fuzz/base/ubuntu-24-04.Dockerfile Unblocks: google/oss-fuzz#13929
1 parent 854f286 commit f7aa481

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

docker/oss-fuzz/base/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# limitations under the License.
1414
FROM gcr.io/clusterfuzz-images/base
1515

16+
RUN apt-get update && apt-get install -y luarocks
17+
1618
ENV UPDATE_WEB_TESTS False
1719

1820
COPY start.sh /data/

docker/oss-fuzz/base/ubuntu-20-04.Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# limitations under the License.
1414
FROM gcr.io/clusterfuzz-images/base:ubuntu-20-04
1515

16+
RUN apt-get update && apt-get install -y luarocks
17+
1618
ENV UPDATE_WEB_TESTS False
1719

1820
COPY start.sh /data/

docker/oss-fuzz/base/ubuntu-24-04.Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# limitations under the License.
1414
FROM gcr.io/clusterfuzz-images/base:ubuntu-24-04
1515

16+
RUN apt-get update && apt-get install -y luarocks
17+
1618
ENV UPDATE_WEB_TESTS False
1719

1820
COPY start.sh /data/

0 commit comments

Comments
 (0)