Files
test-cicd/Dockerfile
Arnaud Scheffler 7dbb1418e9
Some checks failed
ci / docker (push) Failing after 1m17s
Initial commit
2024-10-03 11:29:39 +02:00

11 lines
182 B
Docker

FROM python:3.12
WORKDIR /app
COPY ./requirements.txt .
RUN pip install --no-cache-dir --quiet -r requirements.txt
COPY ./my_api ./my_api
CMD ["fastapi", "run", "my_api/app.py"]