18 lines
308 B
Docker
18 lines
308 B
Docker
FROM python:3.12-slim
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install --no-cache-dir embedding-atlas
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 5055
|
|
|
|
CMD ["embedding-atlas"]
|