Skip to content

Commit

Permalink
Add context for docker building
Browse files Browse the repository at this point in the history
Signed-off-by: Aisuko <[email protected]>
  • Loading branch information
Aisuko committed Mar 17, 2024
1 parent 97ad89b commit f3ebdb3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f backend/requirements.txt ]; then pip install -r backend/requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
code-quality:
name: 'Code-Quality 💎'
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip
if [ -f backend/requirements.txt ]; then pip install -r backend/requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install Dependencies for Linting
run: |
pip install flake8
Expand Down Expand Up @@ -190,10 +190,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f backend/requirements.txt ]; then pip install -r backend/requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build Docker Image
run: |
docker build -t kirin:latest -f backend/Dockerfile backend/
docker build -t kirin:latest -f Dockerfile .
# - name: Push Docker Image
# run: |
Expand Down

0 comments on commit f3ebdb3

Please sign in to comment.