mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 01:23:57 +08:00
15 lines
341 B
Docker
15 lines
341 B
Docker
FROM gitpod/workspace-full
|
|
|
|
RUN sudo apt-get update \
|
|
&& sudo apt-get install -yq --no-install-recommends \
|
|
libpng16-16 \
|
|
libpng-dev \
|
|
pkg-config \
|
|
autoconf \
|
|
libtool \
|
|
build-essential \
|
|
nasm \
|
|
libx11-dev \
|
|
libxkbfile-dev \
|
|
&& sudo rm -rf /var/lib/apt/lists/*
|
|
|