- Löscht den Befehl. - Behebt den Build-Fehler , da das Skript nicht mehr existiert. - Ermöglicht einen erfolgreichen Build des Connectors.
37 lines
1.1 KiB
Docker
37 lines
1.1 KiB
Docker
# --- STAGE 1: Builder ---
|
|
FROM python:3.11-slim AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies needed for building C-extensions
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install dependencies into a local directory
|
|
COPY requirements.txt .
|
|
RUN pip install --user --no-cache-dir -r requirements.txt
|
|
|
|
# --- STAGE 2: Final Runtime ---
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy only the installed packages from builder
|
|
COPY --from=builder /root/.local /root/.local
|
|
# Update PATH to include the user-installed packages
|
|
ENV PATH=/root/.local/bin:$PATH
|
|
|
|
# Copy source code explicitly from their locations relative to the build context (which will be the project root)
|
|
COPY connector-superoffice/worker.py .
|
|
COPY connector-superoffice/webhook_app.py .
|
|
COPY connector-superoffice/queue_manager.py .
|
|
COPY connector-superoffice/config.py .
|
|
COPY connector-superoffice/superoffice_client.py .
|
|
|
|
# Expose port for Webhook
|
|
EXPOSE 8000
|
|
|
|
# Start both worker and webhook directly within the CMD
|
|
CMD ["/bin/bash", "-c", "python3 worker.py & uvicorn webhook_app:app --host 0.0.0.0 --port 8000"]
|