Skip to content

Build Docker Image

Build Docker Image #1

Workflow file for this run

name: Build Docker Image
on:
workflow_dispatch:
permissions:
contents: read
security-events: write
actions: read
jobs:
# Build Docker Image
build:
name: Build Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Docker Image
run: |
docker build -t awesome-fastapi:${{ github.sha }} .