From 194ee30b117aba6276cedca05b141fa22040000c Mon Sep 17 00:00:00 2001 From: Maciej Lebiest Date: Thu, 2 Mar 2023 20:15:26 +0100 Subject: [PATCH] remove lazy-lock.json from image build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f9a4c62..c518059 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,13 +46,13 @@ ENV MASON_PKGS=" \ markdownlint" COPY . /root/.config/nvim - # install system dependencies RUN dnf install -y \ ${GENERAL_PKGS} ${NEOVIM_PKGS} ${PYTHON_DEVEL_PKGS} \ && dnf clean all RUN pip install pynvim - + +RUN rm /root/.config/nvim/lazy-lock.json || true # install lsp and linters using mason RUN nvim --headless +TSUpdateSync \ +"MasonInstall ${MASON_PKGS}" \