From 6cd71fef3ebd8f5a0714b07b9947e4705f4272f6 Mon Sep 17 00:00:00 2001 From: Joshua Taylor Date: Thu, 11 Apr 2024 15:26:11 -0500 Subject: [PATCH] Add ubuntu and steamcmd images back --- .github/workflows/build.yml | 12 ++++++++++++ steamcmd/Dockerfile | 8 ++++++++ ubuntu/Dockerfile | 6 ++++++ 3 files changed, 26 insertions(+) create mode 100644 steamcmd/Dockerfile create mode 100644 ubuntu/Dockerfile diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5fc4ae..3672d43 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,6 +2,8 @@ name: Build Images on: push: + schedule: + - cron: '0 11 * * *' env: REGISTRY: ghcr.io @@ -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 }} diff --git a/steamcmd/Dockerfile b/steamcmd/Dockerfile new file mode 100644 index 0000000..bd26ab1 --- /dev/null +++ b/steamcmd/Dockerfile @@ -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 \ No newline at end of file diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile new file mode 100644 index 0000000..c551d04 --- /dev/null +++ b/ubuntu/Dockerfile @@ -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 \ No newline at end of file