ci-image/Dockerfile

24 lines
536 B
Docker
Raw Normal View History

2022-08-02 21:04:16 +02:00
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 \
2022-08-02 22:47:36 +02:00
automake \
2022-08-09 17:00:44 +02:00
libffi-dev \
2022-08-09 17:12:30 +02:00
ca-certificates \
2022-08-17 19:00:55 +02:00
unzip \
2022-08-17 19:06:40 +02:00
libjpeg-turbo8-dev \
2022-08-25 18:51:13 +02:00
libvncserver-dev \
2022-09-20 11:48:17 +02:00
lua5.3 \
2023-01-08 12:23:17 +01:00
tree \
2023-01-26 20:34:13 +01:00
gdb
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh