ci-image/Dockerfile
dany 6edda6e926
Some checks reported errors
gitea-sync/ci-image/pipeline/head Something is wrong with the build of this commit
Update 'Dockerfile'
2023-01-26 20:34:13 +01:00

24 lines
536 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 \
gdb
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh