mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-07 06:23:26 +08:00
11 lines
173 B
Docker
Vendored
11 lines
173 B
Docker
Vendored
FROM python:3.10-slim-bookworm
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install "openbb[all]"
|
|
RUN pip install openbb-platform-api
|
|
|
|
EXPOSE 6900
|
|
|
|
ENTRYPOINT ["openbb-api", "--host", "0.0.0.0"]
|