lowkey-server / Dockerfile
abhy60098's picture
Create Dockerfile
a1c945f verified
Raw
History Blame Contribute Delete
289 Bytes
FROM python:3.9-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
# Expose the default port Hugging Face expects
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]