remove lazy-lock.json from image build
This commit is contained in:
parent
b71970caf1
commit
194ee30b11
1 changed files with 2 additions and 2 deletions
|
@ -46,13 +46,13 @@ ENV MASON_PKGS=" \
|
||||||
markdownlint"
|
markdownlint"
|
||||||
|
|
||||||
COPY . /root/.config/nvim
|
COPY . /root/.config/nvim
|
||||||
|
|
||||||
# install system dependencies
|
# install system dependencies
|
||||||
RUN dnf install -y \
|
RUN dnf install -y \
|
||||||
${GENERAL_PKGS} ${NEOVIM_PKGS} ${PYTHON_DEVEL_PKGS} \
|
${GENERAL_PKGS} ${NEOVIM_PKGS} ${PYTHON_DEVEL_PKGS} \
|
||||||
&& dnf clean all
|
&& dnf clean all
|
||||||
RUN pip install pynvim
|
RUN pip install pynvim
|
||||||
|
|
||||||
|
RUN rm /root/.config/nvim/lazy-lock.json || true
|
||||||
# install lsp and linters using mason
|
# install lsp and linters using mason
|
||||||
RUN nvim --headless +TSUpdateSync \
|
RUN nvim --headless +TSUpdateSync \
|
||||||
+"MasonInstall ${MASON_PKGS}" \
|
+"MasonInstall ${MASON_PKGS}" \
|
||||||
|
|
Loading…
Reference in a new issue