# syntax=docker/dockerfile:1 FROM docker.io/python:3.10.5-slim-bullseye COPY . /halfapi WORKDIR /halfapi RUN apt-get update > /dev/null && apt-get -y install git > /dev/null RUN pip install gunicorn uvicorn RUN pip install . CMD gunicorn halfapi.app