Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions githound/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# renovate: datasource=github-releases depName=ezekg/git-hound
ARG PACKAGE_VERSION=1.0.0

FROM golang:1.22 as builder
FROM golang:1.23 as builder

ARG PACKAGE_VERSION

RUN wget -q -O "/go/bin/git-hound" \
"https://github.com/ezekg/git-hound/releases/download/${PACKAGE_VERSION}/git-hound_linux_amd64" \
&& chmod +x /go/bin/git-hound

FROM alpine:3.20
FROM alpine:3.21

ENV APT_PACKAGES="git bash"

Expand All @@ -31,7 +31,7 @@
&& apk add --no-cache --update ${APT_PACKAGES} \
&& chmod +x /usr/bin/git-hound

RUN echo 'alias gh=git-hound' >> ~/.bashrc; \

Check failure on line 34 in githound/Dockerfile

View workflow job for this annotation

GitHub Actions / build-on-merge-request

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.
echo 'alias githound=git-hound' >> ~/.bashrc;

WORKDIR /opt
Expand Down
Loading