Skip to content

Commit

Permalink
fix: Added libssl-dev and pkg-config system dependencies for near-wor…
Browse files Browse the repository at this point in the history
…kspaces-rs tests
  • Loading branch information
frol authored Feb 24, 2024
1 parent d9359b4 commit acf5b1f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ ENV RUSTUP_HOME=/usr/local/rustup \
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
ca-certificates \
gcc \
libc6-dev \
gcc \
pkg-config \
libssl-dev \
ca-certificates \
wget \
; \
dpkgArch="$(dpkg --print-architecture)"; \
Expand All @@ -37,4 +39,4 @@ RUN set -eux; \
apt-get remove -y --auto-remove \
wget \
; \
rm -rf /var/lib/apt/lists/*;
rm -rf /var/lib/apt/lists/*;

0 comments on commit acf5b1f

Please sign in to comment.