Upload Dockerfile

This commit is contained in:
Cal Corum 2023-02-21 15:22:02 -06:00
parent 0ace71fbee
commit 8545e72e18

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .