SIGN IN SIGN UP
2023-07-07 03:38:51 -04:00
# Define the image argument and provide a default value
ARG IMAGE=python:3-slim-bookworm
2023-07-07 03:38:51 -04:00
# Use the image as specified
FROM ${IMAGE}
# Re-declare the ARG after FROM
ARG IMAGE
# Update and upgrade the existing packages
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
2025-07-05 02:21:05 -04:00
git \
2023-07-07 03:38:51 -04:00
python3 \
python3-pip \
ninja-build \
libopenblas-dev \
build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/*
2023-07-07 03:38:51 -04:00
RUN mkdir /app
WORKDIR /app
COPY . /app
RUN python3 -m pip install --upgrade pip
2023-07-07 03:38:51 -04:00
RUN python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi uvicorn sse-starlette pydantic-settings starlette-context
RUN pip install llama-cpp-python --verbose;
2023-07-07 03:38:51 -04:00
# Set environment variable for the host
ENV HOST=0.0.0.0
ENV PORT=8000
# Expose a port for the server
EXPOSE 8000
# Run the server start script
CMD ["/bin/sh", "/app/docker/simple/run.sh"]