pvanand commited on
Commit
e3b10d6
1 Parent(s): 1344264

Create dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +8 -0
dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM tiangolo/uvicorn-gunicorn:python3.11
2
+
3
+ LABEL maintainer="Sebastian Ramirez <tiangolo@gmail.com>"
4
+
5
+ COPY requirements.txt /tmp/requirements.txt
6
+ RUN pip install --no-cache-dir -r /tmp/requirements.txt
7
+
8
+ COPY ./app /app