diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100644 index 0000000..0a9976f --- /dev/null +++ b/app/Dockerfile @@ -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"] \ No newline at end of file diff --git a/requirements.txt b/app/requirements.txt similarity index 100% rename from requirements.txt rename to app/requirements.txt