Skip to content

Commit

Permalink
fix(lint): resolve hadolint warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Gleich <git@mattglei.ch>
  • Loading branch information
gleich committed Oct 26, 2021
1 parent b5e773d commit cb9ec06
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker/dev.lint.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ WORKDIR /usr/src/app

# Installing hadolint:
WORKDIR /usr/bin
RUN curl -sL -o hadolint "https://github.com/hadolint/hadolint/releases/download/v1.17.6/hadolint-$(uname -s)-$(uname -m)"
RUN chmod 700 hadolint
RUN curl -sL -o hadolint "https://github.com/hadolint/hadolint/releases/download/v1.17.6/hadolint-$(uname -s)-$(uname -m)" \
&& chmod 700 hadolint

# Installing goreleaser
WORKDIR /
RUN git clone https://github.com/goreleaser/goreleaser
WORKDIR /goreleaser
RUN go get ./...
RUN go build -o goreleaser .
RUN mv goreleaser /usr/bin
RUN go get ./... \
&& go build -o goreleaser . \
&& mv goreleaser /usr/bin

# Installing make
RUN apt-get update && apt-get install make=4.2.1-1.2 -y --no-install-recommends \
Expand Down

0 comments on commit cb9ec06

Please sign in to comment.