Nils Stinnesbeck
be41f5cfcf
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
24 lines
413 B
Docker
24 lines
413 B
Docker
FROM ubuntu:22.04
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
file \
|
|
git \
|
|
build-essential \
|
|
python3 \
|
|
gawk \
|
|
unzip \
|
|
libncurses5-dev \
|
|
zlib1g-dev \
|
|
libssl-dev \
|
|
libelf-dev \
|
|
wget \
|
|
rsync \
|
|
time \
|
|
qemu-utils \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
VOLUME /gluon
|
|
WORKDIR /gluon
|