Skip to content

Add examples folder with attacks port-scan and ssh-brute-force. #11

Add examples folder with attacks port-scan and ssh-brute-force.

Add examples folder with attacks port-scan and ssh-brute-force. #11

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
dorothea-container-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build Docker image with Dockerfile.dorothea
run: docker build . --file Dockerfile.dorothea --tag dorothea:$(date +%s)
example-container-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build Docker image with Dockerfile.guineapig
run: docker build ./examples --file Dockerfile.guineapig --tag guineapig:$(date +%s)
- name: Build Docker image with Dockerfile.attacker
run: docker build ./examples/port-scan --file Dockerfile.attacker --tag attacker:$(date +%s)
- name: Build Docker image with Dockerfile.attacker
run: docker build ./examples/ssh-brute-force --file Dockerfile.attacker --tag attacker:$(date +%s)