Skip to content

Commit

Permalink
Add ubuntu and steamcmd images back
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Taylor committed Apr 11, 2024
1 parent a16a606 commit 6cd71fe
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Build Images

on:
push:
schedule:
- cron: '0 11 * * *'

env:
REGISTRY: ghcr.io
Expand Down Expand Up @@ -70,6 +72,16 @@ jobs:
type=raw,value=17
platform: linux/amd64,linux/arm64

- path: steamcmd
file: Dockerfile
image: pufferpanel/steamcmd
platform: linux/amd64

- path: ubuntu
file: Dockerfile
image: pufferpanel/ubuntu
platform: linux/amd64,linux/arm64

env:
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
Expand Down
8 changes: 8 additions & 0 deletions steamcmd/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM steamcmd/steamcmd

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
apt-get install -y libtinfo5:i386 libncurses5:i386 libcurl3-gnutls:i386 zip unzip curl wget && \
apt-get clean && \
rm -rf /var/cache/apt/archives
6 changes: 6 additions & 0 deletions ubuntu/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 && \
apt-get clean && \
rm -rf /var/cache/apt/archives

0 comments on commit 6cd71fe

Please sign in to comment.