diff --git a/fastapi/Dockerfile b/fastapi/Dockerfile new file mode 100644 index 0000000..5b5bf8c --- /dev/null +++ b/fastapi/Dockerfile @@ -0,0 +1,11 @@ +FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9-slim + +WORKDIR /app + +RUN apt update + +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt + +COPY ./app ./app + diff --git a/fastapi/app/__init__.py b/fastapi/app/__init__.py new file mode 100644 index 0000000..e69de29