third
This commit is contained in:
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
FROM python:3.12.3
|
||||||
|
WORKDIR /code
|
||||||
|
COPY ./requirements.txt /code/requirements.txt
|
||||||
|
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
||||||
|
|
||||||
|
COPY ./app /code/app
|
||||||
|
WORKDIR /code/app
|
||||||
|
CMD ["fastapi", "run", "main.py", "--port", "35050"]
|
||||||
BIN
app/__pycache__/main.cpython-312.pyc
Normal file
BIN
app/__pycache__/main.cpython-312.pyc
Normal file
Binary file not shown.
BIN
app/security/__pycache__/__init__.cpython-312.pyc
Normal file
BIN
app/security/__pycache__/__init__.cpython-312.pyc
Normal file
Binary file not shown.
BIN
app/security/__pycache__/security.cpython-312.pyc
Normal file
BIN
app/security/__pycache__/security.cpython-312.pyc
Normal file
Binary file not shown.
34
requirements.txt
Normal file
34
requirements.txt
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
annotated-types==0.7.0
|
||||||
|
anyio==4.7.0
|
||||||
|
certifi==2024.8.30
|
||||||
|
click==8.1.7
|
||||||
|
dnspython==2.7.0
|
||||||
|
email_validator==2.2.0
|
||||||
|
fastapi==0.115.6
|
||||||
|
fastapi-cli==0.0.6
|
||||||
|
h11==0.14.0
|
||||||
|
httpcore==1.0.7
|
||||||
|
httptools==0.6.4
|
||||||
|
httpx==0.28.1
|
||||||
|
idna==3.10
|
||||||
|
Jinja2==3.1.4
|
||||||
|
markdown-it-py==3.0.0
|
||||||
|
MarkupSafe==3.0.2
|
||||||
|
mdurl==0.1.2
|
||||||
|
pydantic==2.10.3
|
||||||
|
pydantic_core==2.27.1
|
||||||
|
Pygments==2.18.0
|
||||||
|
python-dotenv==1.0.1
|
||||||
|
python-multipart==0.0.19
|
||||||
|
PyYAML==6.0.2
|
||||||
|
rich==13.9.4
|
||||||
|
rich-toolkit==0.12.0
|
||||||
|
shellingham==1.5.4
|
||||||
|
sniffio==1.3.1
|
||||||
|
starlette==0.41.3
|
||||||
|
typer==0.15.1
|
||||||
|
typing_extensions==4.12.2
|
||||||
|
uvicorn==0.32.1
|
||||||
|
uvloop==0.21.0
|
||||||
|
watchfiles==1.0.1
|
||||||
|
websockets==14.1
|
||||||
Reference in New Issue
Block a user