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