navix/backend/Dockerfile
dvirlabs 1804bfb3bb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Build and push navix
2026-03-24 07:40:24 +02:00

11 lines
201 B
Docker

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