docker-gluon-build/Dockerfile
Stefan Hoffmann 2dd572fb85
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
Update 'Dockerfile'
2023-05-22 11:46:11 +00:00

26 lines
459 B
Docker

FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
build-essential \
ca-certificates \
file \
gawk \
git \
libelf-dev \
libncurses5-dev \
libssl-dev \
python3 \
qemu-utils \
rsync \
time \
unzip \
wget \
zlib1g-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN git config --global init.defaultBranch main
VOLUME /gluon
WORKDIR /gluon