dxf_test / dockerfile
ammariii08's picture
Update dockerfile
1286cba verified
raw
history blame contribute delete
230 Bytes
FROM python:3.10.16
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r requirements.txt && \
pip install git+https://github.com/allenai/olmocr.git
EXPOSE 7860
CMD ["python", "app.py"]