mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-06 01:13:57 +03:00
11 lines
245 B
Text
11 lines
245 B
Text
|
FROM python:3.12
|
||
|
|
||
|
WORKDIR /starlio-web
|
||
|
|
||
|
COPY ./requirements.txt /starlio-web/requirements.txt
|
||
|
|
||
|
RUN pip3 install --no-cache-dir --upgrade -r /starlio-web/requirements.txt
|
||
|
|
||
|
COPY ./ /starlio-web/
|
||
|
|
||
|
CMD ['fastapi', 'run', 'main.py', '--port', '8000']
|