Select Git revision
-
Vinod Bangera authoredVinod Bangera authored
Dockerfile 186 B
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app/
EXPOSE 8000
CMD uvicorn main:app --host 0.0.0.0 --port 8000