Skip to content

Update Dockerfile and Makefile, and modify README.md #20

Update Dockerfile and Makefile, and modify README.md

Update Dockerfile and Makefile, and modify README.md #20

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Build the FastAPI Docker image
run: docker build . --file Dockerfile --tag age-detection-api-image
- name: Run tests
run: docker run age-detection-api-image python -m pytest tests/