mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-28 23:31:47 +02:00
12 lines
180 B
Text
12 lines
180 B
Text
|
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9-slim
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN apt update
|
||
|
|
||
|
COPY requirements.txt ./
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
COPY ./app ./app
|
||
|
|