cartman/api/Dockerfile

10 lines
273 B
Text
Raw Normal View History

2023-02-09 18:05:05 -05:00
# syntax-docker/dockerfile:1
2023-02-11 16:13:23 -05:00
FROM python: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-10 17:18:18 -05:00
RUN pip install --no-cache-dir -r requirements.txt
2023-02-11 16:13:23 -05:00
2023-02-09 18:05:05 -05:00
COPY . .
CMD [ "uvicorn", "chatbots:api", "--proxy-headers", "--host", "0.0.0.0", "--port", "8000"]