ICBCBench-Leaderboard / Dockerfile
imlrz's picture
Super-squash branch 'main' using huggingface_hub
f9c0202
Raw
History Blame Contribute Delete
268 Bytes
FROM python:3.10-slim
WORKDIR /code
COPY requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
COPY . /code/
ENV PYTHONUNBUFFERED=1
EXPOSE 7860
CMD ["python", "-u", "app.py"]