big-data-application / Dockerfile
thng292's picture
Let hope this work
81574a7
raw
history blame contribute delete
262 Bytes
FROM python:3.13
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
WORKDIR /app
COPY . .
ENV CMAKE_BUILD_PARALLEL_LEVEL=2
ENV CMAKE_ARGS="-DGGML_CUDA=OFF"
RUN uv sync --package big-data-application
EXPOSE 7860
CMD ["uv", "run", "big-data-application"]