mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-30 03:32:26 +08:00
build(Docker): comment out seemingly useless installation of build dependencies
This commit is contained in:
parent
e389592017
commit
bb7a4f9bc3
23
Dockerfile
23
Dockerfile
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user