Files
amap/backend/Dockerfile
JulienAldon f6101a251a
Some checks failed
Deploy Amap / deploy (push) Failing after 8s
fix app dockerfile
2026-02-19 23:55:39 +01:00

13 lines
279 B
Docker

FROM python:3.12
WORKDIR /code
RUN apt update && apt install -y weasyprint
COPY ./backend/requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./backend /code
CMD ["fastapi", "run", "src/main.py", "--port", "8000"]