refs #0 The root commit.
This commit is contained in:
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@@ -0,0 +1,6 @@
|
||||
FROM python:3.11.4
|
||||
WORKDIR /code
|
||||
COPY ./requirements.txt /code/requirements.txt
|
||||
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
||||
COPY ./back/core /code/core
|
||||
CMD ["uvicorn", "core.main:app", "--host", "0.0.0.0", "--reload"]
|
||||
Reference in New Issue
Block a user