c84d8e1665
Updates the image to have a newer build environment, which is required for some of the maintainer scripts. Increases the image size from 414 to 545 MB.
31 lines
525 B
Docker
31 lines
525 B
Docker
FROM debian:bullseye-slim
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
file \
|
|
git \
|
|
subversion \
|
|
python3 \
|
|
build-essential \
|
|
gawk \
|
|
unzip \
|
|
libncurses5-dev \
|
|
zlib1g-dev \
|
|
libssl-dev \
|
|
libelf-dev \
|
|
wget \
|
|
rsync \
|
|
time \
|
|
qemu-utils \
|
|
ecdsautils \
|
|
lua-check \
|
|
shellcheck \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN useradd -d /gluon gluon
|
|
USER gluon
|
|
|
|
VOLUME /gluon
|
|
WORKDIR /gluon
|