added Dockerfile and CI file
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Nils Stinnesbeck 2023-05-19 17:04:15 +02:00
commit 8364a04e27
Signed by: nils
GPG Key ID: C52E07422A136076
2 changed files with 48 additions and 0 deletions

12
.woodpecker.yml Normal file
View File

@ -0,0 +1,12 @@
pipeline:
dockerfile:
image: woodpeckerci/plugin-docker-buildx
settings:
platforms: linux/amd64
repo: git.freifunk-rhein-sieg.net/Freifunk-Troisdorf/docker-gluon-build
registry: https://git.freifunk-rhein-sieg.net
tags: latest
auto_tag: true
username: api_user
password:
from_secret: gitpw

36
Dockerfile Normal file
View File

@ -0,0 +1,36 @@
FROM debian:bullseye-slim
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
file \
git \
python3 \
build-essential \
gawk \
unzip \
libncurses5-dev \
zlib1g-dev \
libssl-dev \
libelf-dev \
wget \
rsync \
time \
qemu-utils \
ecdsautils \
lua-check \
shellcheck \
&& apt-get clean \
&& 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
RUN useradd -d /gluon gluon
USER gluon
VOLUME /gluon
WORKDIR /gluon