Skip to content

Commit

Permalink
Add libssl-dev to base image
Browse files Browse the repository at this point in the history
  • Loading branch information
tombeynon committed Jan 28, 2025
1 parent 16accb8 commit 2f1c4f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,11 @@ FROM build_${BUILD_METHOD} AS build
#
FROM ${BASE_IMAGE} AS base

ARG BASE_PACKAGES

RUN apt-get update && \
apt-get install --no-install-recommends --assume-yes \
ca-certificates curl wget file unzip zstd liblz4-tool gnupg2 jq s3cmd pv && \
ca-certificates curl wget file unzip zstd liblz4-tool gnupg2 jq s3cmd pv ${BASE_PACKAGES} && \
apt-get clean

# Install Storj DCS uplink client
Expand Down
3 changes: 2 additions & 1 deletion nomic/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ services:
REPOSITORY: https://github.com/nomic-io/nomic
NAMESPACE: TM
BUILD_IMAGE: rustlang/rust:nightly-bookworm
BUILD_PACKAGES: build-essential libssl-dev pkg-config clang
BUILD_PACKAGES: build-essential pkg-config clang
BUILD_CMD: cargo install --path . --locked --bin nomic
BASE_PACKAGES: libssl-dev
BINARY_PATH: /usr/local/cargo/bin/nomic
PROJECT_DIR: .nomic-stakenet-3/tendermint
VERSION_CMD: nomic --version
Expand Down

0 comments on commit 2f1c4f8

Please sign in to comment.