diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a52abb6..4e51dfe 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,18 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - target: ["debian:10"] + target: + - debian:10 + - debian:11 + - debian:12 + - ubuntu:20.04 + - ubuntu:22.04 + - ubuntu:24.04 + - el:7 + - el:8 + - el:9 + - sles:12 + - sles:15 steps: - name: Checkout code diff --git a/images/Dockerfile.template b/images/Dockerfile.template index 4441ca2..7831512 100644 --- a/images/Dockerfile.template +++ b/images/Dockerfile.template @@ -3,6 +3,5 @@ FROM barebuild/$TARGET ARG PKGR_VERSION WORKDIR /app - RUN curl -GLs https://buildcurl.com -d recipe=pkgr -d version="$PKGR_VERSION" -d target="$TARGET" -o - | tar xzf - -C /usr/local ENTRYPOINT ["/usr/local/bin/pkgr", "package", ".", "--clean", "--auto", "--compile-cache-dir", "/cache"]