Skip to content

chore: Update Dockerfile to include additional dependencies and insta… #22

chore: Update Dockerfile to include additional dependencies and insta…

chore: Update Dockerfile to include additional dependencies and insta… #22

Workflow file for this run

name: Snort3 Docker Image CI/CD
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/bengo237/snort3:latest
platforms: linux/amd64,linux/arm64