This repository has been archived on 2023-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
docker-hadolint/Dockerfile

12 lines
356 B
Docker
Raw Permalink Normal View History

2023-07-26 07:40:08 +02:00
# https://endoflife.date/alpine
FROM alpine:3.18
2023-07-26 07:43:14 +02:00
ARG HADOLINT_VERSION
ENV HADOLINT_VERSION ${HADOLINT_VERSION}
2023-07-26 07:40:08 +02:00
RUN wget -nv https://github.com/hadolint/hadolint/releases/download/v${HADOLINT_VERSION}/hadolint-Linux-x86_64 -O /usr/local/bin/hadolint \
2023-07-27 06:07:30 +02:00
&& chmod +x /usr/local/bin/hadolint
2023-07-27 06:10:41 +02:00
# needed for gitea act runner
RUN apk add --no-cache nodejs git