Skip to content

Commit

Permalink
CARRY: allow location of golang to be specified
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin <kpostlet@redhat.com>
  • Loading branch information
KPostOffice authored and ChristianZaccaria committed Jan 30, 2025
1 parent 5471c1c commit a9c721e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile.rhoai
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ RUN dnf upgrade -y && dnf install -y \
# Install Go
ENV PATH=/usr/local/go/bin:$PATH

COPY --from=golang /usr/lib/golang /usr/local/go
ARG GOLANG_DIR=/usr/lib/golang
COPY --from=golang ${GOLANG_DIR} /usr/local/go

WORKDIR /workspace

Expand Down

0 comments on commit a9c721e

Please sign in to comment.