Spaces:
Runtime error
Runtime error
File size: 567 Bytes
d6bbb78 ca77329 d6bbb78 7bcfb41 d6bbb78 88905f6 d6bbb78 fdb4875 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# Use the official Python base image
FROM python:3.9-slim
# Set the working directory in the container
WORKDIR /
# Create a directory for EasyOCR model storage
RUN mkdir -p /.EasyOCR/model && \
chmod -R 777 /.EasyOCR
# Copy the dependencies file to the working directory
COPY requirements.txt .
# Install any dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code to the working directory
COPY . .
# Expose the port your app runs on
EXPOSE 8000
# Command to run the application
CMD ["python", "app/app.py"]
|