ci-image/Dockerfile
dany 800752d277
Some checks failed
gitea-sync/ci-image/pipeline/head There was a failure building this commit
Update 'Dockerfile'
2023-01-26 20:42:27 +01:00

24 lines
543 B
Docker

FROM ubuntu:focal AS build-env
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" \
apt-get --yes --no-install-recommends install \
wget curl\
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 -y