Initial strategy32 research and live runtime
This commit is contained in:
20
Dockerfile
Normal file
20
Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
tzdata \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
ENV PYTHONDONTWRITEBYTECODE=1
|
||||
ENV PYTHONPATH=/app
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN pip install --no-cache-dir pandas
|
||||
|
||||
COPY strategy29/ strategy29/
|
||||
COPY strategy32/ strategy32/
|
||||
|
||||
RUN mkdir -p /app/runtime
|
||||
|
||||
ENTRYPOINT ["python", "-m", "strategy32.scripts.run_live_monitor"]
|
||||
Reference in New Issue
Block a user