mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-06 22:12:12 +08:00
* feat: create cli dockerfile and update docs * remove port mapping * Remove cli image and docs
48 lines
1.2 KiB
Docker
Vendored
48 lines
1.2 KiB
Docker
Vendored
# ---- Base Python ----
|
|
FROM python:3.11-slim-bullseye AS base
|
|
|
|
# set work directory
|
|
WORKDIR /openbb
|
|
|
|
# set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# install dependencies
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends build-essential openssh-client curl \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# install toml and poetry
|
|
RUN pip install toml poetry
|
|
|
|
# ---- Copy Files/Build ----
|
|
FROM base AS builder
|
|
|
|
WORKDIR /openbb
|
|
|
|
# install Rust
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends libwebkit2gtk-4.0-dev \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# add Rust to PATH
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
COPY ./openbb_platform ./openbb_platform
|
|
|
|
# Install the Platform
|
|
RUN pip install /openbb/openbb_platform[all]
|
|
RUN pip install openbb-devtools
|
|
|
|
# ---- Copy Files ----
|
|
FROM base
|
|
|
|
COPY --from=builder /usr/local /usr/local
|
|
|
|
# Launch the API
|
|
CMD ["uvicorn", "openbb_core.api.rest_api:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|