Files
fastapi-vue-odoo/backend/Dockerfile
bartool 57dd7d169f
Some checks failed
Deploy Application / deploy (push) Failing after 53s
Test runner / check-runner (push) Successful in 3s
fix: correct paths in Dockerfiles for requirements and package files
2026-01-06 21:55:02 +01:00

11 lines
197 B
Docker

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