Files
flowsint/flowsint-api/Dockerfile
2025-04-14 15:20:06 +02:00

14 lines
218 B
Docker

FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
EXPOSE 5000
ENTRYPOINT ["/app/entrypoint.sh"]