Spaces:
Sleeping
Sleeping
File size: 677 Bytes
3ec70de 2a28b8a 3ec70de 2a28b8a | 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 | FROM python:3.10-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
HOST=0.0.0.0 \
PORT=8000 \
WORKERS=1 \
MAX_CONCURRENT_ENVS=16
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
COPY requirements.txt /app/server/requirements.txt
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r /app/server/requirements.txt
# Copy the self-contained server package
COPY . /app/server
WORKDIR /app/server
# Run FastAPI app
EXPOSE ${PORT}
CMD ["python", "-m", "server.app"]
|