example / Dockerfile
jessehostetler's picture
Fix docker image not working in kubernetes. Fix int width not set in input scherma. Add makefile and test image.
be5bf87
raw
history blame
444 Bytes
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE="1" \
PYTHONUNBUFFERED="1"
# hadolint ignore=DL3013
RUN python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel
WORKDIR /app/
COPY requirements.txt ./
RUN python3 -m pip install --no-cache-dir -r ./requirements.txt
COPY app ./app
COPY models ./models
COPY main.py ./
EXPOSE 8000
ENTRYPOINT ["python3", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]