File size: 285 Bytes
0f332f8 cc5b175 0f332f8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code
# Fix permissions for Hugging Face Spaces (user 1000)
RUN chmod -R 777 /code
EXPOSE 7860
CMD ["python", "Webapp/app.py"]
|