Spaces:
Sleeping
Sleeping
FROM python:3.12-slim | |
WORKDIR /code | |
COPY . /code | |
RUN apt-get update | |
RUN apt-get install -y libicu-dev | |
RUN pip install --upgrade pip | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
USER root | |
RUN chmod -R 777 . | |
CMD ["python3", "main.py"] | |