ai / Dockerfile
fareldevelopers's picture
Create Dockerfile
85b4451 verified
Raw
History Blame Contribute Delete
357 Bytes
FROM python:3.10-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
# Berikan akses penuh ke direktori home untuk caching model HF
RUN mkdir -p /.cache && chmod -R 777 /.cache
ENV HF_HOME=/.cache
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]