Skip to content

Feat: FastAPI 로 변경 #12

Feat: FastAPI 로 변경

Feat: FastAPI 로 변경 #12

name: Build and Push Docker image
on:
push:
branches:
- main
paths:
- 'backend/app/**'
jobs:
build-and-push:
runs-on: ubuntu-22.04
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: ./backend/app
file: ./backend/app/Dockerfile
push: true
tags: ehdgns8227/back-api:${{ github.sha }}