Skip to content

Commit

Permalink
Add missing libs for other templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Taylor committed Apr 11, 2024
1 parent cfc020d commit 6cbd2c3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
6 changes: 6 additions & 0 deletions ubuntu/xz.Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6cbd2c3

Please sign in to comment.