diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bd7e7d6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +FROM ubuntu:22.04 + +LABEL maintainer="LinuxGSM " + +# Install SteamCMD +RUN echo "**** Install SteamCMD ****" \ +&& echo steam steam/question select "I AGREE" | debconf-set-selections \ +&& echo steam steam/license note '' | debconf-set-selections \ +&& dpkg --add-architecture i386 \ +&& apt-get update -y \ +&& apt-get install -y --no-install-recommends libsdl2-2.0-0:i386 locales steamcmd \ +&& ln -s /usr/games/steamcmd /usr/bin/steamcmd + +# Add unicode support +RUN locale-gen en_US.UTF-8 +ENV LANG 'en_US.UTF-8' +ENV LANGUAGE 'en_US:en' + +# Update SteamCMD +RUN steamcmd +quit \ No newline at end of file diff --git a/workflows/docker-publish.yml b/workflows/docker-publish.yml new file mode 100644 index 0000000..73e62b6 --- /dev/null +++ b/workflows/docker-publish.yml @@ -0,0 +1,47 @@ +name: ci + +on: + push: + branches: + - 'main' + schedule: + - cron: '0 0 * * *' + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v3 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2.0.0 + - + name: Login to DockerHub + uses: docker/login-action@v2.0.0 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + - + name: Login to GitHub Container Registry + uses: docker/login-action@v2.0.0 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v3.0.0 + with: + context: . + platforms: linux/amd64 + push: true + tags: | + gameservermanagers/steamcmd:latest + gameservermanagers/steamcmd:ubuntu-22 + ghcr.io/gameservermanagers/steamcmd:latest + ghcr.io/gameservermanagers/steamcmd:ubuntu-22