Update to use clj kondo alpine image (#1165)

* Update to use clj kondo alpine image

* Fix binary path
This commit is contained in:
Gabriel Diaz 2021-01-27 14:04:35 -05:00 committed by GitHub
parent 622f70ee65
commit 0eabdb5e06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@
#########################################
# Get dependency images as build stages #
#########################################
FROM borkdude/clj-kondo:2020.09.09 as clj-kondo
FROM cljkondo/clj-kondo:2021.01.20-alpine as clj-kondo
FROM dotenvlinter/dotenv-linter:3.0.0 as dotenv-linter
FROM mstruebing/editorconfig-checker:2.3.1 as editorconfig-checker
FROM yoheimuta/protolint:v0.28.0 as protolint
@ -237,7 +237,7 @@ COPY --from=dotenv-linter /dotenv-linter /usr/bin/
#####################
# Install clj-kondo #
#####################
COPY --from=clj-kondo /usr/local/bin/clj-kondo /usr/bin/
COPY --from=clj-kondo /bin/clj-kondo /usr/bin/
################################
# Install editorconfig-checker #