aboutsummaryrefslogtreecommitdiff
path: root/shellcheck-builder
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2017-05-30 11:49:25 -0600
committerCody Hiar <codyfh@gmail.com>2017-05-30 11:49:25 -0600
commita515e5413b34f7eea3bcb842cc9c37ded356eadb (patch)
tree399de4b4e0b16c64d414050895492b446dd0a12e /shellcheck-builder
parent4c9f98b16b22790205d0c34d9619027abd83a817 (diff)
Move back to ubuntu, fuck alpine's shitty package selection
Diffstat (limited to 'shellcheck-builder')
-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/"]