fast microservice to accompany n8n workflow
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create Dockerfile

authored by

Jasper Mayone and committed by
GitHub
8fd6fdb3 581a6150

+22
+22
Dockerfile
··· 1 + FROM python:3.12-slim 2 + 3 + # Install system dependencies 4 + RUN apt-get update && apt-get install -y \ 5 + tesseract-ocr \ 6 + && rm -rf /var/lib/apt/lists/* 7 + 8 + # Set working directory 9 + WORKDIR /app 10 + 11 + # Copy requirements and install 12 + COPY requirements.txt . 13 + RUN pip install -r requirements.txt 14 + 15 + # Copy application code 16 + COPY . . 17 + 18 + # Expose port 19 + EXPOSE 8000 20 + 21 + # Run the application 22 + CMD ["python", "main.py"]