aboutsummaryrefslogtreecommitdiff
path: root/shellcheck-builder/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'shellcheck-builder/Dockerfile')
-rw-r--r--shellcheck-builder/Dockerfile12
1 files changed, 0 insertions, 12 deletions
diff --git a/shellcheck-builder/Dockerfile b/shellcheck-builder/Dockerfile
deleted file mode 100644
index c2bea54..0000000
--- a/shellcheck-builder/Dockerfile
+++ /dev/null
@@ -1,12 +0,0 @@
-FROM rdeavila/docker-shellcheck:latest
-
-# Get shellcheck binary
-RUN mkdir -p /package/bin/
-RUN cp ~/.cabal/bin/shellcheck /package/bin/
-
-# Get shared libraries
-RUN mkdir -p /package/lib/
-RUN ldd ~/.cabal/bin/shellcheck | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' /package/lib/
-
-# Copy shellcheck package out to mounted directory
-CMD ["cp", "-avr", "/package", "/mnt/"]