cartman/api/Dockerfile

9 lines
288 B
Text
Raw Normal View History

2023-02-09 18:05:05 -05:00
# syntax-docker/dockerfile:1
2023-02-11 21:09:48 -05:00
FROM python:3.10-slim
2023-02-09 18:05:05 -05:00
WORKDIR /app
COPY requirements.txt requirements.txt
2023-02-11 16:13:23 -05:00
ENV PYTHONUNBUFFERED=1
2023-02-11 21:09:48 -05:00
RUN python3 -m pip install --no-cache-dir -r requirements.txt
2023-02-09 18:05:05 -05:00
COPY . .
CMD [ "uvicorn", "chatbots:api", "--proxy-headers", "--host", "0.0.0.0", "--port", "8000"]