Skip to content

Commit

Permalink
copy libs from DockerfileUpstream
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjoosten committed Oct 27, 2024
1 parent 8eade64 commit 784c48f
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,28 @@ WORKDIR /opt/ampersand

RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y git pkg-config libbz-dev
apt-get install -y --no-install-recommends \
apt-transport-https \
autoconf \
automake \
build-essential \
curl \
gcc \
git \
gnupg2 \
graphviz \
libbz2-dev \
libexpat1-dev \
libgmp-dev \
libgmp10 \
libnuma-dev \
lsb-release \
openssh-server \
pkg-config \
software-properties-common \
wget \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*

# Start with a docker-layer that contains build dependencies, to maximize the reuse of these dependencies by docker's cache mechanism.
# Only updates to the files stack.yaml package.yaml will rebuild this layer; all other changes use the cache.
Expand Down

0 comments on commit 784c48f

Please sign in to comment.