Bert-model-test / Dockerfile
ganeshkonapalli's picture
Upload 8 files
8505a58 verified
raw
history blame contribute delete
182 Bytes
FROM python:3.10
WORKDIR /app
COPY ./app /app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]