30 lines
750 B
Docker
30 lines
750 B
Docker
FROM ubuntu:focal AS build-env
|
|
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" \
|
|
apt-get --yes --no-install-recommends install \
|
|
wget \
|
|
build-essential \
|
|
make \
|
|
libsqlite3-dev \
|
|
cmake \
|
|
zlib1g-dev \
|
|
libreadline-dev \
|
|
libssl-dev \
|
|
autotools-dev \
|
|
autoconf \
|
|
libtool \
|
|
automake \
|
|
libffi-dev \
|
|
ca-certificates \
|
|
unzip \
|
|
libjpeg-turbo8-dev \
|
|
libvncserver-dev \
|
|
lua5.3 \
|
|
tree
|
|
|
|
# app image tool support
|
|
RUN DEBIAN_FRONTEND="noninteractive" \
|
|
apt-get --yes --no-install-recommends install \
|
|
binutils coreutils desktop-file-utils fakeroot \
|
|
fuse libgdk-pixbuf2.0-dev patchelf python3-pip \
|
|
python3-setuptools squashfs-tools strace \
|
|
util-linux zsync |