mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 04:35:03 -05:00
- use special DNS from docker - install tkinter - use proper matplotlib backend - add instructions to install xserver in docs/dev/GETTING-STARTED.md
12 lines
286 B
Docker
12 lines
286 B
Docker
FROM ghcr.io/zama-ai/zamalang-compiler
|
|
|
|
RUN apt-get install --no-install-recommends -y \
|
|
python3.8 \
|
|
python3.8-tk \
|
|
python3.8-venv \
|
|
python-is-python3 \
|
|
git \
|
|
graphviz* && \
|
|
pip install --no-cache-dir --upgrade pip && \
|
|
pip install --no-cache-dir poetry
|