Spaces:
Sleeping
Sleeping
File size: 262 Bytes
e94100d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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"]
|