File size: 932 Bytes
9e5fa5b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | # Stage 1: Build stage with all dependencies
FROM python:3.11-slim as builder
WORKDIR /app
# Install build dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
libssl-dev \
zlib1g-dev \
libbz2-dev \
libreadline-dev \
libsqlite3-dev \
wget \
curl \
llvm \
libncurses5-dev \
libncursesw5-dev \
xz-utils \
tk-dev \
libffi-dev \
liblzma-dev \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
COPY requirements.txt .
RUN pip install --user --no-cache-dir -r requirements.txt
# Stage 2: Runtime image
FROM python:3.11-slim
WORKDIR /app
# Copy only the necessary files from builder
COPY --from=builder /root/.local /root/.local
COPY fix_oeg_server.py fix_server.cfg ./
COPY FIX44.xml .
# Ensure scripts in .local are usable
ENV PATH=/root/.local/bin:$PATH
EXPOSE 5001
CMD ["python", "fix_oeg_server.py"] |