Spaces:
Sleeping
Sleeping
ezequiellopez
commited on
Commit
·
3cd1a73
1
Parent(s):
07f753d
fixing Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -2,6 +2,8 @@
|
|
2 |
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9
|
3 |
|
4 |
COPY ./app /app
|
|
|
|
|
5 |
|
6 |
RUN pip install -r /app/requirements.txt
|
7 |
# Use the official Python image
|
|
|
2 |
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9
|
3 |
|
4 |
COPY ./app /app
|
5 |
+
COPY requirements.txt /app/requirements
|
6 |
+
COPY .env /app/.env
|
7 |
|
8 |
RUN pip install -r /app/requirements.txt
|
9 |
# Use the official Python image
|