hexabot/nlu/Dockerfile

22 lines
333 B
Docker
Raw Normal View History

2024-09-10 09:50:11 +00:00
FROM python:3.11.4
#
WORKDIR /app
#
COPY ./requirements.txt ./requirements.txt
# Update pip
RUN pip3 install --upgrade pip
# Install deps
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
# Copy source code
COPY . .
EXPOSE 5000
2024-09-10 09:50:11 +00:00
# Entrypoint
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5000"]