Compare commits

..

No commits in common. "0c0d9efc0ff1f1b7dcb2386d7017ae99b6316e0f" and "2b594f8c058f047cee8512ca2913a7d198ce1286" have entirely different histories.

3 changed files with 2 additions and 45 deletions

View File

@ -1,38 +0,0 @@
name: Daily build
# Controls when the workflow will run
on:
schedule:
- cron: "39 19 * * *"
push:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v5
name: Daily build
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/0ranki/clamav-docker:latest

View File

@ -1,3 +0,0 @@
FROM docker.io/clamav/clamav:latest
RUN sed -i s/localhost/127.0.0.1/g /usr/local/bin/clamdcheck.sh

View File

@ -1,6 +1,4 @@
# clamav-docker-arm64 # clamav-docker-arm64
Arm64 and amd64 container images of ClamAV Arm64 container images of ClamAV
The images have a modified clamdcheck.sh script, changing "localhost" to "127.0.0.1", as the healtcheck failed when running the container using `podman kube play` Built manually according to instructions at https://github.com/Cisco-Talos/clamav/blob/main/README.Docker.md#building-the-clamav-image on top of Alpine Linux
Built manually according to instructions at https://github.com/Cisco-Talos/clamav/blob/main/README.Docker.md#building-the-clamav-image from the docker.io/clamav/clamav image.