mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
13 lines
203 B
Docker
13 lines
203 B
Docker
|
FROM python:3.12-slim
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
EXPOSE 5001
|
||
|
|
||
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5001"]
|