GemmaFinetunes2 / Dockerfile
PawinC's picture
Upload 8 files
7afebb8 verified
raw
history blame contribute delete
No virus
381 Bytes
FROM python:3.10.12-slim
WORKDIR /
RUN apt-get update && apt-get install -y build-essential
COPY requirements.txt /requirements.txt
RUN pip install -r requirements.txt
COPY app /app
COPY models /models
#DO NOT FORGET TO UNCOMMENT THE ABOVE WHEN PUSHING TO HF!!!!
# EXPOSE 7860
ENV PYTHONUNBUFFERED=1
CMD ["uvicorn", "app.main:app", "--port", "7860", "--host", "0.0.0.0"]