From 8b2d127841900dbb983d3a72635686ff44b33000 Mon Sep 17 00:00:00 2001 From: Dann Bohn Date: Thu, 19 Oct 2023 08:10:34 -0400 Subject: [PATCH] adds netbase --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0be35ba..953f75c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,11 @@ ARG UID=3000 ENV BUNDLE_PATH=/app/vendor/bundle -RUN apt-get update && apt-get install --no-install-recommends -y gcc && \ - rm -rf /var/lib/apt/lists* +RUN apt-get update && apt-get install --no-install-recommends -y \ + gcc \ + netbase \ + && \ + rm -rf /var/lib/apt/lists* RUN useradd -u $UID app -d /app RUN mkdir /app/tmp