mirror of
https://github.com/langchain-ai/example-tool-server.git
synced 2026-06-30 22:17:55 -04:00
27 lines
896 B
Docker
27 lines
896 B
Docker
FROM python:3.12-slim-bookworm
|
|
|
|
# The installer requires curl (and certificates) to download the release archive
|
|
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates
|
|
|
|
# Download the latest installer
|
|
ADD https://astral.sh/uv/install.sh /uv-installer.sh
|
|
|
|
# Run the installer then remove it
|
|
RUN sh /uv-installer.sh && rm /uv-installer.sh
|
|
|
|
# Ensure the installed binary is on the `PATH`
|
|
ENV PATH="/root/.local/bin/:$PATH"
|
|
ENV UV_COMPILE_BYTECODE=1
|
|
|
|
# Copy the project into the image
|
|
ADD . /app
|
|
|
|
# Sync the project into a new environment, using the frozen lockfile
|
|
WORKDIR /app
|
|
RUN uv sync --frozen
|
|
|
|
# Run the FastAPI application by default
|
|
# Uses `fastapi dev` to enable hot-reloading when the `watch` sync occurs
|
|
# Uses `--host 0.0.0.0` to allow access from outside the container
|
|
CMD ["uv", "run", "uvicorn", "app.server:app", "--host", "0.0.0.0", "--port", "8080"]
|