navix/backend/Dockerfile
dvirlabs a1871d505c
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Build and push app to harbor
2026-03-22 10:13:55 +02:00

10 lines
200 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