Skip to content

Commit

Permalink
fix(buildenvs): Remove dependency hard version requirements
Browse files Browse the repository at this point in the history
These depdendency requirements are not necessary as the build
environment ensures they work but also it makes upgrading the base
image much harder.

Signed-off-by: Alexander Jung <[email protected]>
  • Loading branch information
nderjung committed Jul 24, 2023
1 parent 2d85aa7 commit 4304db9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions buildenvs/myself.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ FROM golang:${GO_VERSION}-bullseye AS kraftkit-full
RUN set -xe; \
apt-get update; \
apt-get install -y --no-install-recommends \
build-essential=12.9 \
cmake=3.18.4-2+deb11u1 \
libssh2-1-dev=1.9.0-2 \
libssl-dev=1.1.1n-0+deb11u4 \
make=4.3-4.1 \
pkg-config=0.29.2-1 \
git=1:2.30.2-1+deb11u2; \
build-essential \
cmake \
libssh2-1-dev \
libssl-dev \
make \
pkg-config \
git; \
apt-get clean; \
go install mvdan.cc/[email protected]; \
git config --global --add safe.directory /go/src/kraftkit.sh;
Expand Down

0 comments on commit 4304db9

Please sign in to comment.