diff --git a/Dockerfile b/Dockerfile index 59296f6..51532c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,13 +3,14 @@ FROM python:3.12-slim AS base WORKDIR /app RUN apt-get update && \ - apt-get install -y --no-install-recommends gcc g++ ca-certificates libssl-dev curl && \ + apt-get install -y --no-install-recommends gcc g++ ca-certificates libssl-dev curl libnss3 && \ rm -rf /var/lib/apt/lists/* COPY pyproject.toml ./ RUN pip install --no-cache-dir . && \ pip install --no-cache-dir openbb-quantitative openbb-econometrics openbb-technical && \ + pip install --no-cache-dir --upgrade curl_cffi && \ apt-get purge -y gcc g++ && \ apt-get autoremove -y