diff --git a/Dockerfile b/Dockerfile index 365e4d07f..cd274a500 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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