You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
414 B

FROM python:3.11-slim
# Install build dependencies and clean up
RUN apt-get update --fix-missing && \
apt-get install -y --no-install-recommends \
build-essential \
cmake \
ninja-build \
curl && \
apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
# upgrade pip and install your package
RUN pip install --upgrade pip && \
pip install -e .
CMD ["/bin/bash"]