Backtesting-App / Dockerfile
Daveabc12's picture
Final attempt: Isolate pandas_ta installation
04bef00
raw
history blame
256 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt ./requirements.txt
RUN pip install --no-cache-dir --index-url https://pypi.org/simple/ -r requirements.txt
RUN pip install pandas_ta
COPY . .
CMD ["streamlit", "run", "app.py", "--server.port=7860"]