mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
build: add workflow to create HDK env Docker Image - make bot username a secret - update Makefile to pull the HDK image - have a separate Makefile for the dev specific Docker Image needs
11 lines
267 B
Docker
11 lines
267 B
Docker
FROM ghcr.io/zama-ai/zamalang-compiler
|
|
|
|
RUN apt-get install --no-install-recommends -y \
|
|
python3.8 \
|
|
python3.8-venv \
|
|
python-is-python3 \
|
|
git \
|
|
graphviz* && \
|
|
pip install --no-cache-dir --upgrade pip && \
|
|
pip install --no-cache-dir poetry
|