Spaces:
Sleeping
Sleeping
Create dockerfile
Browse files- dockerfile +8 -0
dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM tiangolo/uvicorn-gunicorn:python3.11
|
| 2 |
+
|
| 3 |
+
LABEL maintainer="Sebastian Ramirez <[email protected]>"
|
| 4 |
+
|
| 5 |
+
COPY requirements.txt /tmp/requirements.txt
|
| 6 |
+
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
| 7 |
+
|
| 8 |
+
COPY ./app /app
|