Path: blob/master/apps/candlestick-patterns/Dockerfile
1148 views
FROM python:3.11-slim RUN apt-get -y update && apt-get -y install gcc curl make RUN pip install --upgrade pip COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* COPY assets ./assets COPY app.py . CMD ["python", "app.py"]