From 743041941358ce83885193d83d49575a9bec5217 Mon Sep 17 00:00:00 2001 From: Samuel Mutel <12967891+smutel@users.noreply.github.com> Date: Tue, 17 Oct 2023 05:21:41 +0200 Subject: [PATCH] fix: Missing dependencies to build application (#1825) Co-authored-by: Samuel Mutel --- Dockerfile.dev | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.dev b/Dockerfile.dev index a3a40f90..dd49b3ef 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -6,5 +6,7 @@ RUN set -e -x \ && /opt/devtools.sh ENV PATH=/go/bin:$PATH +RUN apt-get update && apt-get install -y npm && npm install -g npx cspell@latest + ENV CGO_ENABLED 0 ENV GOPATH /go:/yq