29 lines
811 B
Docker
29 lines
811 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 nano
|
|
|
|
# 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"
|
|
|
|
|
|
# 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
|
|
|
|
# Expose port 8000
|
|
EXPOSE 8000
|
|
|
|
|
|
# Presuming there is a `my_app` command provided by the project uvicorn main:app --reload
|
|
CMD ["uv", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] |