Compare commits

..

No commits in common. "main" and "3.17" have entirely different histories.
main ... 3.17

4 changed files with 51 additions and 56 deletions

View File

@ -1,12 +0,0 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

11
.woodpecker.yml Normal file
View File

@ -0,0 +1,11 @@
pipeline:
publish-docker-image:
image: plugins/kaniko
settings:
repo: docker.io/thallian/alpine-s6
tags: latest,${CI_COMMIT_SHA:0:8},${CI_COMMIT_TAG=pre}
dockerfile: Dockerfile
username:
from_secret: DOCKER_USER
password:
from_secret: DOCKER_PW

View File

@ -1,44 +0,0 @@
FROM docker.io/alpine:3.21 AS builder
LABEL maintainer="Sebastian Hugentobler <sebastian@vanwa.ch>"
RUN apk --no-cache add \
curl \
tar \
xz
RUN mkdir /overlay
ENV S6_OVERLAY_VERSION=v3.2.0.2
ENV S6_HASH_noarch=6dbcde158a3e78b9bb141d7bcb5ccb421e563523babbe2c64470e76f4fd02dae
ENV S6_HASH_aarch64=8b22a2eaca4bf0b27a43d36e65c89d2701738f628d1abd0cea5569619f66f785
ENV S6_HASH_x86_64=59289456ab1761e277bd456a95e737c06b03ede99158beb24f12b165a904f478
RUN curl -L -O https://github.com/just-containers/s6-overlay/releases/download/$S6_OVERLAY_VERSION/s6-overlay-noarch.tar.xz
RUN echo "$S6_HASH_noarch s6-overlay-noarch.tar.xz" | sha256sum -c - || exit 1
RUN tar xf s6-overlay-noarch.tar.xz -C /overlay --strip 1
RUN curl -L -O https://github.com/just-containers/s6-overlay/releases/download/$S6_OVERLAY_VERSION/s6-overlay-$(arch).tar.xz
RUN eval "echo \"\${S6_HASH_$(arch)} s6-overlay-$(arch).tar.xz\" | sha256sum -c -" || exit 1
RUN tar xf s6-overlay-$(arch).tar.xz -C /overlay --strip 1
FROM docker.io/alpine:3.21
ENV LANG=en_US.UTF-8
ENV S6_KEEP_ENV=1
ENV PATH="$PATH:/command"
ENV S6_GLOBAL_PATH="$PATH"
COPY --from=builder /overlay /
RUN apk --no-cache add \
syslog-ng \
tzdata
ENV TZ=Europe/Zurich
RUN apk --no-cache upgrade --ignore alpine-baselayout
ADD /rootfs /
ENTRYPOINT ["/init"]

40
Dockerfile Normal file
View File

@ -0,0 +1,40 @@
FROM docker.io/alpine:3.17 AS builder
LABEL maintainer="Sebastian Hugentobler <sebastian@vanwa.ch>"
ENV S6_OVERLAY_VERSION=v3.1.2.1
RUN apk --no-cache add \
git \
make \
binutils \
tar \
xz
RUN git clone https://github.com/just-containers/s6-overlay.git /src
WORKDIR /src
RUN git checkout "$S6_OVERLAY_VERSION"
RUN make ARCH=x86_64-linux-musl -j4
FROM docker.io/alpine:3.17
ENV LANG=en_US.UTF-8
ENV S6_KEEP_ENV=1
ENV PATH="$PATH:/command"
ENV S6_GLOBAL_PATH="$PATH"
COPY --from=builder /src/output/rootfs-overlay-noarch /
COPY --from=builder /src/output/rootfs-overlay-x86_64-linux-musl /
RUN apk --no-cache add \
syslog-ng \
tzdata
ENV TZ=Europe/Zurich
RUN apk --no-cache upgrade --ignore alpine-baselayout
ADD /rootfs /
ENTRYPOINT ["/init"]