StockEx / Dockerfile.base
RayMelius's picture
Initial commit: StockEx trading platform
9e5fa5b
raw
history blame contribute delete
268 Bytes
FROM python:3.11-slim
# Install build tools and deps for QuickFIX
RUN apt-get update && apt-get install -y \
build-essential \
gcc \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /opt
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt