Skip to content

fix: add a docker ignore file for the base container #6

fix: add a docker ignore file for the base container

fix: add a docker ignore file for the base container #6

Workflow file for this run

name: Build requirements
on:
push:
branches:
- main
pull_request:
branches:
- main
- feature/**
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
path: ["base/jobs/docker/1.0/py3/requirements.txt", "pytorch/jobs/docker/2.0/py3/requirements.txt", "tensorflow/jobs/docker/2.13/py3/requirements.txt"]
steps:
- uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10' # install the python version needed
- name: Install dependencies
run: |
pip install -r ${{ matrix.path }}