Skip to content

Commit

Permalink
fix: Make Docker install mathlibtools (#256)
Browse files Browse the repository at this point in the history
The dockerfile annoyingly did not come with `leanproject` and company. This fixes it.
  • Loading branch information
YaelDillies authored Oct 26, 2023
1 parent cb5f460 commit 257abbb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ RUN TZ=UTC ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/tim
# Install prerequisites.
RUN apt-get update && \
apt-get install -y git libgmp-dev cmake ccache clang && \
apt-get install -y curl python3-yaml python3 python-is-python3 && \
apt-get install -y curl python3-yaml python3 python-is-python3 python3-pip && \
apt-get clean
RUN pip3 install mathlibtools

# create a non-root user
RUN useradd -m lean
Expand Down

0 comments on commit 257abbb

Please sign in to comment.