diff --git a/Dockerfile b/Dockerfile index 726057c..153ed74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,5 +3,6 @@ RUN apt-get update && apt-get install -y libpq-dev gcc WORKDIR /app COPY . /app RUN pip install -U pip && pip install -r requirements.txt +ADD stock_info.py /usr/local/lib/python3.12/site-packages/yahoo_fin/ EXPOSE 8050 CMD ["python", "./indicators.py"]