aops02/math-annotation-demo
0
1FROM python:3.11-slim2 3ENV PYTHONDONTWRITEBYTECODE=14ENV PYTHONUNBUFFERED=15ENV POTATO_CONFIG=config.yaml6 7WORKDIR /app8 9COPY requirements.txt .10RUN pip install --no-cache-dir -r requirements.txt11 12COPY . .13 14EXPOSE 786015 16CMD ["python", "hf_start.py"]17 