From e7e97b24488f6de7f05c7e8fbba3aa2d138e8a53 Mon Sep 17 00:00:00 2001 From: Christopher Rabotin Date: Thu, 1 Feb 2024 14:34:43 -0700 Subject: [PATCH] Add gawk dependency for vscode --- Dockerfile | 2 +- Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41a048e8..ea7f72c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM opensuse/tumbleweed # Install Python 3.10 and other necessary packages RUN zypper ref && \ - zypper -n in python310 python310-pip zsh uuid-runtime shadow git git-lfs && \ + zypper -n in python310 python310-pip zsh uuid-runtime shadow git git-lfs gawk && \ zypper clean WORKDIR /app diff --git a/Dockerfile.dev b/Dockerfile.dev index ed35bcd1..edee6f34 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -4,7 +4,7 @@ FROM opensuse/tumbleweed # Install Python 3.10 and other necessary packages RUN zypper ref && \ - zypper -n in gcc make python310 python310-pip uuid-runtime perl perl-IPC-System-Simple && \ + zypper -n in gcc make python310 python310-pip gawk uuid-runtime perl perl-IPC-System-Simple && \ zypper clean WORKDIR /app