23 lines
540 B
Docker
23 lines
540 B
Docker
FROM python:3.11-slim
|
|
|
|
# Prevent Python from writing .pyc files and enable unbuffered logging
|
|
ENV PYTHONDONTWRITEBYTECODE=1
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies if any are needed in the future
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install requirements
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy all source files
|
|
COPY . .
|
|
|
|
# Run the transaction simulator
|
|
CMD ["python", "main.py"]
|