build(Docker): comment out seemingly useless installation of build dependencies

This commit is contained in:
Panagiotis Papadopoulos 2025-03-03 09:16:15 +01:00 committed by Panagiotis Papadopoulos
parent e389592017
commit bb7a4f9bc3

View File

@ -2,17 +2,18 @@
FROM node:22.14.0-bullseye-slim AS builder
# Configure build dependencies in a single layer
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
g++ \
gcc \
libtool \
make \
nasm \
libpng-dev \
python3 \
&& rm -rf /var/lib/apt/lists/*
# TriliumNextTODO: These don't seem to be required at all
# RUN apt-get update && apt-get install -y --no-install-recommends \
# autoconf \
# automake \
# g++ \
# gcc \
# libtool \
# make \
# nasm \
# libpng-dev \
# python3 \
# && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app