9 lines
160 B
Docker
9 lines
160 B
Docker
|
ARG BASE_IMAGE=iamthefij/drone-pre-commit
|
||
|
FROM ${BASE_IMAGE}:base
|
||
|
|
||
|
# Add helper scripts
|
||
|
COPY ./scripts /scripts
|
||
|
|
||
|
# Bundle hadolint
|
||
|
RUN /scripts/add_hadolint.sh
|