mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-08 04:23:57 -05:00
17 lines
627 B
Docker
17 lines
627 B
Docker
FROM python:3.10-slim
|
|
|
|
ARG version
|
|
|
|
# provide the `ld` binary required by the compiler
|
|
# hadolint ignore=DL3008
|
|
RUN apt-get update && apt-get install --no-install-recommends -y binutils graphviz \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
# Add a non-root user and group
|
|
RUN groupadd -g 10001 grp02 && \
|
|
useradd -u 10000 -g grp02 usr01 && \
|
|
mkdir -p /home/usr01 && chown -R usr01:grp02 /home/usr01
|
|
# Switch to the non-root user
|
|
USER usr01:grp02
|
|
RUN pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu --extra-index-url https://pypi.zama.ai/cpu/ concrete-python==${version}
|