Files
OpenBB/build/docker/platformAPI.Dockerfile
Dominic Meconi 98fc5ac9c6 Modify ENTRYPOINT in platformAPI Dockerfile (#7299)
Removed the '--login' option from the ENTRYPOINT command. As it is no longer  needed
2025-12-31 06:33:19 +00:00

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"]