BizSearch / Dockerfile
ConstCorrectness
v1
6e212c2
Raw
History Blame Contribute Delete
303 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x start.sh
EXPOSE 7860
CMD ["./start.sh"]