Spaces:
Runtime error
Runtime error
FROM python:3.9 | |
RUN pip install virtualenv && virtualenv venv -p python3 | |
ENV VIRTUAL_ENV=/venv | |
ENV PATH="$VIRTUAL_ENV/bin:$PATH" | |
WORKDIR /app | |
COPY requirements.txt ./ | |
RUN pip install -r requirements.txt | |
RUN python -m nltk.downloader punkt | |
RUN git clone https://github.com/facebookresearch/detectron2.git | |
RUN python -m pip install -e detectron2 | |
# Install dependencies | |
RUN apt-get update && apt-get install libgl1 -y | |
COPY . /app | |
# Run the application: | |
CMD ["python", "-u", "app.py"] |