StockChartingDash/Dockerfile
2024-09-29 12:33:03 -07:00

7 lines
152 B
Docker

FROM python:alpine3.19
WORKDIR /app
COPY . /app
RUN pip install -U pip && pip install -r requirements.txt
EXPOSE 8050
CMD ["python", "./indicators.py"]