Skip to content
This repository has been archived by the owner on Apr 27, 2024. It is now read-only.

Feature/sonarcloud test #247

Feature/sonarcloud test

Feature/sonarcloud test #247

name: Build API Docker Image
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker
uses: docker/setup-buildx-action@v1
- name: Build Docker Image
run: |
cd src/TechLanches
docker build -f Dockerfile.API -t techlanches-api-image:latest . --no-cache
- name: Clean up
run: docker system prune -af