test
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 1m12s

This commit is contained in:
dongho
2024-12-20 00:22:49 +09:00
parent 0db0405ea1
commit c94e4d8bf4
2 changed files with 42 additions and 1 deletions

8
Dockerfile Normal file
View 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"]