Fastapi base Dockerfile
Signed-off-by: vjanz <valon.januzaj98@gmail.com>
This commit is contained in:
parent
263ba37b97
commit
3b3e7e7da6
11
fastapi/Dockerfile
Normal file
11
fastapi/Dockerfile
Normal file
@ -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
|
||||
|
0
fastapi/app/__init__.py
Normal file
0
fastapi/app/__init__.py
Normal file
Loading…
Reference in New Issue
Block a user