includes libzip-dev
This commit is contained in:
parent
3d008c71fc
commit
97bc1f8676
|
@ -33,7 +33,7 @@ The current implementation of Codex's zero-knowledge proving circuit requires th
|
||||||
On a bare bones installation of Debian (or a distribution derived from Debian, such as Ubuntu), run
|
On a bare bones installation of Debian (or a distribution derived from Debian, such as Ubuntu), run
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
apt-get update && apt-get install build-essential cmake curl git rustc cargo
|
$ apt-get update && apt-get install build-essential cmake curl git rustc cargo libzip-dev
|
||||||
```
|
```
|
||||||
|
|
||||||
Non-Debian distributions have different package managers: `apk`, `dnf`, `pacman`, `rpm`, `yum`, etc.
|
Non-Debian distributions have different package managers: `apk`, `dnf`, `pacman`, `rpm`, `yum`, etc.
|
||||||
|
@ -41,7 +41,7 @@ Non-Debian distributions have different package managers: `apk`, `dnf`, `pacman`
|
||||||
For example, on a bare bones installation of Fedora, run
|
For example, on a bare bones installation of Fedora, run
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
dnf install @development-tools cmake gcc-c++ rust cargo
|
dnf install @development-tools cmake gcc-c++ libzip rust cargo
|
||||||
```
|
```
|
||||||
|
|
||||||
### macOS
|
### macOS
|
||||||
|
@ -53,7 +53,7 @@ xcode-select --install
|
||||||
|
|
||||||
Install [Homebrew (`brew`)](https://brew.sh/) and in a new terminal run
|
Install [Homebrew (`brew`)](https://brew.sh/) and in a new terminal run
|
||||||
```shell
|
```shell
|
||||||
brew install bash cmake rust
|
brew install bash cmake rust libzip
|
||||||
```
|
```
|
||||||
|
|
||||||
Check that `PATH` is setup correctly
|
Check that `PATH` is setup correctly
|
||||||
|
|
|
@ -30,7 +30,7 @@ ARG NAT_IP_AUTO
|
||||||
WORKDIR ${APP_HOME}
|
WORKDIR ${APP_HOME}
|
||||||
COPY --from=builder ${BUILD_HOME}/build/codex /usr/local/bin
|
COPY --from=builder ${BUILD_HOME}/build/codex /usr/local/bin
|
||||||
COPY --chmod=0755 docker/docker-entrypoint.sh /
|
COPY --chmod=0755 docker/docker-entrypoint.sh /
|
||||||
RUN apt-get update && apt-get install -y libgomp1 bash curl jq && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y libgomp1 bash curl jq libzip-dev && rm -rf /var/lib/apt/lists/*
|
||||||
ENV NAT_IP_AUTO=${NAT_IP_AUTO}
|
ENV NAT_IP_AUTO=${NAT_IP_AUTO}
|
||||||
ENTRYPOINT ["/docker-entrypoint.sh"]
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
||||||
CMD ["codex"]
|
CMD ["codex"]
|
||||||
|
|
Loading…
Reference in New Issue