Files
concrete/docker/Dockerfile
Arthur Meyre 048bb61e8e fix(tools): add git to the docker image to be able to make coverage
- move comment in Makefile and make it silent
2021-08-13 18:11:43 +02:00

13 lines
471 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 && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir poetry && \
echo "python3 -m venv /hdk/.docker_venv" >> /root/.bashrc && \
echo "source /hdk/.docker_venv/bin/activate" >> /root/.bashrc && \
echo "cd /hdk/ && make setup_env" >> /root/.bashrc
WORKDIR /hdk
ENTRYPOINT ["/bin/bash", "-l"]