diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 251503e..7e4380e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -86,6 +86,13 @@ jobs: type=raw,value=latest platform: linux/amd64,linux/arm64 + - path: ubuntu + file: xz.Dockerfile + image: pufferpanel/ubuntu + tags: | + type=raw,value=xz + platform: linux/amd64,linux/arm64 + env: REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index c551d04..91c6d90 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu RUN apt update && \ - apt install -y zip unzip curl wget && \ + apt install -y zip unzip curl wget libicu && \ apt-get clean && \ rm -rf /var/cache/apt/archives \ No newline at end of file diff --git a/ubuntu/xz.Dockerfile b/ubuntu/xz.Dockerfile new file mode 100644 index 0000000..8d8cb4e --- /dev/null +++ b/ubuntu/xz.Dockerfile @@ -0,0 +1,6 @@ +FROM ubuntu + +RUN apt update && \ + apt install -y zip unzip curl wget libicu xz && \ + apt-get clean && \ + rm -rf /var/cache/apt/archives \ No newline at end of file