We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0a381e commit bac8675Copy full SHA for bac8675
Dockerfile
@@ -1,6 +1,15 @@
1
-FROM alpine:edge
+FROM debian:stable-slim
2
3
-RUN apk add minify yq bash perl coreutils
+RUN DEBIAN_FRONTEND=noninteractive apt-get update &&\
4
+ apt-get install -y wget &&\
5
+ wget https://github.com/mikefarah/yq/releases/download/v4.30.8/yq_linux_amd64 &&\
6
+ chmod a+x yq_linux_amd64 &&\
7
+ mv yq_linux_amd64 /usr/bin/yq &&\
8
+ wget https://github.com/tdewolff/minify/releases/download/v2.12.4/minify_linux_amd64.tar.gz &&\
9
+ tar -xzf minify_linux_amd64.tar.gz &&\
10
+ chmod a+x minify &&\
11
+ mv minify /usr/bin/ &&\
12
+ apt-get autoremove -y && apt-get clean -y
13
14
COPY main.sh /main.sh
15
COPY gen.sh /gen.sh
0 commit comments