From cd2c1556a4e516c676c4f9d857baf6aeededdad3 Mon Sep 17 00:00:00 2001 From: teoberi Date: Thu, 23 May 2024 09:14:27 +0300 Subject: [PATCH] Update Dockerfile.photon (Fortify) Add NASM and binutils in the base image --- Dockerfile.photon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.photon b/Dockerfile.photon index b0dce12..b81c44a 100644 --- a/Dockerfile.photon +++ b/Dockerfile.photon @@ -4,7 +4,7 @@ FROM photon:5.0 RUN tdnf upgrade -y && tdnf remove toybox -y && \ tdnf install -y build-essential git rpm-build coreutils util-linux \ make autoconf automake gcc ncurses-devel sed tar texinfo wget procps-ng grep \ - findutils gzip file which libxml2 python3 python3-pip jq clang && \ + findutils gzip file which libxml2 python3 python3-pip jq clang nasm binutils && \ pip3 install --upgrade pip && pip3 install setuptools && \ pip3 install demjson3 && mkdir -p /zig && \ wget https://ziglang.org/builds/zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz && \