Moving to workflow

This commit is contained in:
2024-08-17 11:32:19 -05:00
parent 56ab7842dd
commit 9745429f6d
2 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
name: Create and publish a Docker image for Linux
on:
release:
types: ["published"]
env:
REGISTRY: ghcr.io
GITHUBUSER: ${{ github.repository_owner }}
IMAGE_NAME: speedtest-cli
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: |
${{ env.REGISTRY }}/${{ env.GITHUBUSER }}/${{ env.IMAGE_NAME }}:latest
${{ env.REGISTRY }}/${{ env.GITHUBUSER }}${{ env.IMAGE_NAME }}:${{ github.ref_name }}

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM rockylinux/rockylinux:8.4
RUN curl -s https://packagecloud.io/install/repositories/ookla/speedtest-cli/script.rpm.sh | bash
RUN yum -y install speedtest
RUN echo alias speedtest=\'speedtest --accept-license\' >> ~/.bashrc
CMD ["speedtest"]