Files
n8n-workflows/Dockerfile
2025-07-02 15:58:35 +02:00

6 lines
156 B
Docker

FROM python:3.9.23-slim
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "run.py", "--host", "0.0.0.0", "--port", "8000"]