Skip to content

more changes

more changes #5

Workflow file for this run

name: Docker Image CIf
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- uses: actions/checkout@v3
- name: Build the C-CPP image
run: docker build . --file c-cpp/Dockerfile --tag c-cpp:latest
- name: Build the java image
run: docker build . --file java/Dockerfile --tag java:latest
- name: Build the python image
run: docker build . --file python/Dockerfile --tag python:latest
- name: Build the rust image
run: docker build . --file rust/Dockerfile --tag rust:latest
- name: Build the kali image
run: docker build . --file kali/Dockerfile --tag kali:latest