labmap/backend/Dockerfile
dvirlabs eb46950c86
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Build and push backend
2026-03-25 13:34:39 +02:00

14 lines
224 B
Docker

# backend/Dockerfile
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
EXPOSE 8000