Skip to content

Commit

Permalink
Install make, as it is not included in alpine images
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Geens committed Jan 6, 2025
1 parent a7b018b commit 927c1b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/Dockerfile.revad-ceph
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ RUN dnf update --nobest -y && dnf install -y \
librbd-devel \
librados-devel

ADD https://go.dev/dl/go1.22.10.linux-amd64.tar.gz \
go1.22.10.linux-amd64.tar.gz
ADD https://go.dev/dl/go1.22.7.linux-amd64.tar.gz \
go1.22.7.linux-amd64.tar.gz

RUN rm -rf /usr/local/go && \
tar -C /usr/local -xzf go1.22.10.linux-amd64.tar.gz && \
rm go1.22.10.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.22.7.linux-amd64.tar.gz && \
rm go1.22.7.linux-amd64.tar.gz

ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go
Expand Down
1 change: 1 addition & 0 deletions docker/Dockerfile.revad-eos
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ENV GIT_COMMIT=$GIT_COMMIT
ENV VERSION=$VERSION
ENV CGO_ENABLED 0

RUN apk add --no-cache make bash
RUN make revad

FROM gitlab-registry.cern.ch/dss/eos/eos-all:5.2.14
Expand Down

0 comments on commit 927c1b0

Please sign in to comment.