changed build image
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Nils Stinnesbeck 2023-05-20 17:46:32 +02:00
parent 134345a02b
commit be41f5cfcf
Signed by: nils
GPG Key ID: C52E07422A136076

View File

@ -1,12 +1,11 @@
FROM debian:bullseye-slim FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
file \ file \
git \ git \
python3 \
build-essential \ build-essential \
python3 \
gawk \ gawk \
unzip \ unzip \
libncurses5-dev \ libncurses5-dev \
@ -17,17 +16,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
rsync \ rsync \
time \ time \
qemu-utils \ qemu-utils \
ecdsautils \
lua-check \
shellcheck \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN mkdir /tmp/ec &&\
wget -O /tmp/ec/ec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.7.0/ec-linux-amd64.tar.gz &&\
tar -xvzf /tmp/ec/ec-linux-amd64.tar.gz &&\
mv bin/ec-linux-amd64 /usr/local/bin/editorconfig-checker &&\
rm -rf /tmp/ec
VOLUME /gluon VOLUME /gluon
WORKDIR /gluon WORKDIR /gluon