Added Dockerfile for app; moved requirements.txt into app
This commit is contained in:
parent
3c4946f165
commit
8eba882ed7
10
app/Dockerfile
Normal file
10
app/Dockerfile
Normal file
@ -0,0 +1,10 @@
|
||||
FROM python:3.10
|
||||
|
||||
WORKDIR /stocknear-backend
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
COPY . .
|
||||
|
||||
|
||||
CMD ["uvicorn", "main:app", "--reload"]
|
||||
Loading…
x
Reference in New Issue
Block a user