From d879c701080a04b04016482f67ce496d1640cb37 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sat, 5 Mar 2022 23:00:26 -0600 Subject: [PATCH] Add binutils to list of installed packages binutils offers useful utilities, namely objcopy for me. It is reasonable to assume others may need them as well. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 02aa228..be3874d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ENV BUILD_DIR="/tmp" \ COPY bin /usr/local/bin -RUN apk add --no-cache build-base && \ +RUN apk add --no-cache build-base binutils && \ echo "Building CC65 ${CC65_VERSION}" && \ cd ${BUILD_DIR} && \ wget https://github.com/cc65/cc65/archive/${CC65_VERSION}.tar.gz && \