11 lines
182 B
Docker
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"] |