Skip to content

🐛 fix(ubuntu16, ubuntu18): Python now works in ub16 and ub18 #5

🐛 fix(ubuntu16, ubuntu18): Python now works in ub16 and ub18

🐛 fix(ubuntu16, ubuntu18): Python now works in ub16 and ub18 #5

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- version: "24.04"
file: "Dockerfile"
- version: "22.04"
file: "Dockerfile"
- version: "20.04"
file: "Dockerfile"
- version: "18.04"
file: "Dockerfile.ubuntu1804"
- version: "16.04"
file: "Dockerfile.ubuntu1604"
max-parallel: 5
steps:
- uses: actions/checkout@v4
- name: Build Ubuntu ${{ matrix.version }}
run: docker build . --file ${{ matrix.file }} --build-arg IMAGE=ubuntu:${{ matrix.version }} --tag nopwnv2:${{ matrix.version }}-$(date +%s)