Skip to content

Force UVICORN_WORKERS=1 in teacher containers #463

Force UVICORN_WORKERS=1 in teacher containers

Force UVICORN_WORKERS=1 in teacher containers #463

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile
push: true
tags: affinefoundation/affine:latest,affinefoundation/affine:${{ github.sha }}