From a31c6b13a80e4a4fbb525eeb7a2a78253bb15fa5 Mon Sep 17 00:00:00 2001 From: Kabilar Gunalan Date: Fri, 19 Jul 2024 03:23:59 -0500 Subject: [PATCH] Add `linux-headers` package (#256) * Update base image * Update Dockerfile * Remove `gcc` package * Remove `linux-headers` package * Add `linux-headers` and remove `python3-dev` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d7e15fe..a56ff0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ LABEL maintainer="Michael Hausenblas, hausenbl@amazon.com" COPY action.sh /action.sh -RUN apk add --no-cache bash build-base && chmod +x /action.sh +RUN apk add --no-cache bash build-base linux-headers && chmod +x /action.sh ENTRYPOINT ["/action.sh"]