-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an Alpine variant for Node.js docker images #2334
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note that this only adds an Alpine variant for the v7, v6 and v4 versions. The v0.10 and v0.12 releases are either EOL or will be later this year and will no longer be updated. Reference: - nodejs/docker-node#156 - nodejs/docker-node#46
This was referenced Nov 10, 2016
diff --git a/node_slim/Dockerfile b/node_alpine/Dockerfile
similarity index 48%
copy from node_slim/Dockerfile
copy to node_alpine/Dockerfile
index b6cfe0c..f90bafc 100644
--- a/node_slim/Dockerfile
+++ b/node_alpine/Dockerfile
@@ -1,9 +1,23 @@
-FROM buildpack-deps:jessie-curl
+FROM alpine:3.4
-RUN groupadd -r node && useradd -r -g node node
+ENV NPM_CONFIG_LOGLEVEL info
+ENV NODE_VERSION 7.1.0
-# gpg keys listed at https://github.com/nodejs/node
-RUN set -ex \
+RUN addgroup -S node \
+ && adduser -D -S -h /var/cache/node -s /sbin/nologin -G node node \
+ && apk add --no-cache \
+ libstdc++ \
+ && apk add --no-cache --virtual .build-deps \
+ binutils-gold \
+ curl \
+ g++ \
+ gcc \
+ gnupg \
+ libgcc \
+ linux-headers \
+ make \
+ python \
+ tar \
&& for key in \
9554F04D7259F04124DE6B476D5A82AC7E37093B \
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
@@ -15,22 +29,19 @@ RUN set -ex \
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
- done
-
-ENV NPM_CONFIG_LOGLEVEL info
-ENV NODE_VERSION 7.1.0
-
-RUN buildDeps='xz-utils' \
- && set -x \
- && apt-get update && apt-get install -y $buildDeps --no-install-recommends \
- && rm -rf /var/lib/apt/lists/* \
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
+ done \
+ && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.gz" \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
- && grep " node-v$NODE_VERSION-linux-x64.tar.xz\$" SHASUMS256.txt | sha256sum -c - \
- && tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
- && rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
- && apt-get purge -y --auto-remove $buildDeps \
- && ln -s /usr/local/bin/node /usr/local/bin/nodejs
+ && grep " node-v$NODE_VERSION.tar.gz\$" SHASUMS256.txt | sha256sum -c - \
+ && tar -xf "node-v$NODE_VERSION.tar.gz" \
+ && cd "node-v$NODE_VERSION" \
+ && ./configure \
+ && make -j$(getconf _NPROCESSORS_ONLN) \
+ && make install \
+ && apk del .build-deps \
+ && cd .. \
+ && rm -Rf "node-v$NODE_VERSION" \
+ && rm "node-v$NODE_VERSION.tar.gz" SHASUMS256.txt.asc SHASUMS256.txt
CMD [ "node" ]
diff --git a/node_argon-slim/Dockerfile b/node_argon-alpine/Dockerfile
similarity index 48%
copy from node_argon-slim/Dockerfile
copy to node_argon-alpine/Dockerfile
index 2325756..7b9bdec 100644
--- a/node_argon-slim/Dockerfile
+++ b/node_argon-alpine/Dockerfile
@@ -1,9 +1,23 @@
-FROM buildpack-deps:jessie-curl
+FROM alpine:3.4
-RUN groupadd -r node && useradd -r -g node node
+ENV NPM_CONFIG_LOGLEVEL info
+ENV NODE_VERSION 4.6.2
-# gpg keys listed at https://github.com/nodejs/node
-RUN set -ex \
+RUN addgroup -S node \
+ && adduser -D -S -h /var/cache/node -s /sbin/nologin -G node node \
+ && apk add --no-cache \
+ libstdc++ \
+ && apk add --no-cache --virtual .build-deps \
+ binutils-gold \
+ curl \
+ g++ \
+ gcc \
+ gnupg \
+ libgcc \
+ linux-headers \
+ make \
+ python \
+ tar \
&& for key in \
9554F04D7259F04124DE6B476D5A82AC7E37093B \
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
@@ -15,22 +29,19 @@ RUN set -ex \
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
- done
-
-ENV NPM_CONFIG_LOGLEVEL info
-ENV NODE_VERSION 4.6.2
-
-RUN buildDeps='xz-utils' \
- && set -x \
- && apt-get update && apt-get install -y $buildDeps --no-install-recommends \
- && rm -rf /var/lib/apt/lists/* \
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
+ done \
+ && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.gz" \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
- && grep " node-v$NODE_VERSION-linux-x64.tar.xz\$" SHASUMS256.txt | sha256sum -c - \
- && tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
- && rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
- && apt-get purge -y --auto-remove $buildDeps \
- && ln -s /usr/local/bin/node /usr/local/bin/nodejs
+ && grep " node-v$NODE_VERSION.tar.gz\$" SHASUMS256.txt | sha256sum -c - \
+ && tar -xf "node-v$NODE_VERSION.tar.gz" \
+ && cd "node-v$NODE_VERSION" \
+ && ./configure \
+ && make -j$(getconf _NPROCESSORS_ONLN) \
+ && make install \
+ && apk del .build-deps \
+ && cd .. \
+ && rm -Rf "node-v$NODE_VERSION" \
+ && rm "node-v$NODE_VERSION.tar.gz" SHASUMS256.txt.asc SHASUMS256.txt
CMD [ "node" ]
diff --git a/node_boron-slim/Dockerfile b/node_boron-alpine/Dockerfile
similarity index 48%
copy from node_boron-slim/Dockerfile
copy to node_boron-alpine/Dockerfile
index 80d53fd..28e332e 100644
--- a/node_boron-slim/Dockerfile
+++ b/node_boron-alpine/Dockerfile
@@ -1,9 +1,23 @@
-FROM buildpack-deps:jessie-curl
+FROM alpine:3.4
-RUN groupadd -r node && useradd -r -g node node
+ENV NPM_CONFIG_LOGLEVEL info
+ENV NODE_VERSION 6.9.1
-# gpg keys listed at https://github.com/nodejs/node
-RUN set -ex \
+RUN addgroup -S node \
+ && adduser -D -S -h /var/cache/node -s /sbin/nologin -G node node \
+ && apk add --no-cache \
+ libstdc++ \
+ && apk add --no-cache --virtual .build-deps \
+ binutils-gold \
+ curl \
+ g++ \
+ gcc \
+ gnupg \
+ libgcc \
+ linux-headers \
+ make \
+ python \
+ tar \
&& for key in \
9554F04D7259F04124DE6B476D5A82AC7E37093B \
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
@@ -15,22 +29,19 @@ RUN set -ex \
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
- done
-
-ENV NPM_CONFIG_LOGLEVEL info
-ENV NODE_VERSION 6.9.1
-
-RUN buildDeps='xz-utils' \
- && set -x \
- && apt-get update && apt-get install -y $buildDeps --no-install-recommends \
- && rm -rf /var/lib/apt/lists/* \
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
+ done \
+ && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.gz" \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
- && grep " node-v$NODE_VERSION-linux-x64.tar.xz\$" SHASUMS256.txt | sha256sum -c - \
- && tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
- && rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
- && apt-get purge -y --auto-remove $buildDeps \
- && ln -s /usr/local/bin/node /usr/local/bin/nodejs
+ && grep " node-v$NODE_VERSION.tar.gz\$" SHASUMS256.txt | sha256sum -c - \
+ && tar -xf "node-v$NODE_VERSION.tar.gz" \
+ && cd "node-v$NODE_VERSION" \
+ && ./configure \
+ && make -j$(getconf _NPROCESSORS_ONLN) \
+ && make install \
+ && apk del .build-deps \
+ && cd .. \
+ && rm -Rf "node-v$NODE_VERSION" \
+ && rm "node-v$NODE_VERSION.tar.gz" SHASUMS256.txt.asc SHASUMS256.txt
CMD [ "node" ] |
Build test of #2334; 5d8ca4c ( $ bashbrew build node:7.1.0
Using bashbrew/cache:3d5a239029c13eb0ded0978864da9274119ea6fc30feebfddcd153e6a7ae840d (node:7.1.0)
Tagging node:7.1.0
Tagging node:7.1
Tagging node:7
Tagging node:latest
$ test/run.sh node:7.1.0
testing node:7.1.0
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:7.1.0-alpine
Using bashbrew/cache:5792e585f0b2485f53a01b8d55ccfbe40e6458c5552f82ffc6ad1238197399a3 (node:7.1.0-alpine)
Tagging node:7.1.0-alpine
Tagging node:7.1-alpine
Tagging node:7-alpine
Tagging node:alpine
$ test/run.sh node:7.1.0-alpine
testing node:7.1.0-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:7.1.0-onbuild
Using bashbrew/cache:8506892790aa587276099c817e812ce437016588b015066dcb9dd00194730ece (node:7.1.0-onbuild)
Tagging node:7.1.0-onbuild
Tagging node:7.1-onbuild
Tagging node:7-onbuild
Tagging node:onbuild
$ test/run.sh node:7.1.0-onbuild
testing node:7.1.0-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:7.1.0-slim
Using bashbrew/cache:69529d99ecb7753c686e1a4843c377a641577d1295e3bb17690c9d336bcb657a (node:7.1.0-slim)
Tagging node:7.1.0-slim
Tagging node:7.1-slim
Tagging node:7-slim
Tagging node:slim
$ test/run.sh node:7.1.0-slim
testing node:7.1.0-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:7.1.0-wheezy
Using bashbrew/cache:5dc90676d92ef3abf3c2ce72d587d92d9f0ed4048f31905c41aaa5fceff507e0 (node:7.1.0-wheezy)
Tagging node:7.1.0-wheezy
Tagging node:7.1-wheezy
Tagging node:7-wheezy
Tagging node:wheezy
$ test/run.sh node:7.1.0-wheezy
testing node:7.1.0-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.9.1
Using bashbrew/cache:43f49a25780995e26d0ae12103db920f471be75b37c77d1ac4f0fbb77d1b7e1e (node:6.9.1)
Tagging node:6.9.1
Tagging node:6.9
Tagging node:6
Tagging node:boron
$ test/run.sh node:6.9.1
testing node:6.9.1
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.9.1-alpine
Using bashbrew/cache:e07a6b16ce97f05a21478bcc4459f52fe3b219be8dbe0e53b8dec378be035a7a (node:6.9.1-alpine)
Tagging node:6.9.1-alpine
Tagging node:6.9-alpine
Tagging node:6-alpine
Tagging node:boron-alpine
$ test/run.sh node:6.9.1-alpine
testing node:6.9.1-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.9.1-onbuild
Using bashbrew/cache:17cd62a8af1df5144f529ded44ad80e80d5b9f8de9295520924aaa764ab10aa0 (node:6.9.1-onbuild)
Tagging node:6.9.1-onbuild
Tagging node:6.9-onbuild
Tagging node:6-onbuild
Tagging node:boron-onbuild
$ test/run.sh node:6.9.1-onbuild
testing node:6.9.1-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:6.9.1-slim
Using bashbrew/cache:f74758a8798d6d47e8356eed399f1b4ab9cbaf173182d1d05e53b53ca19af494 (node:6.9.1-slim)
Tagging node:6.9.1-slim
Tagging node:6.9-slim
Tagging node:6-slim
Tagging node:boron-slim
$ test/run.sh node:6.9.1-slim
testing node:6.9.1-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.9.1-wheezy
Using bashbrew/cache:11f3c95dceabde989673b12bde2c8796456f5eeb9532b60e1b924126e4bc26c7 (node:6.9.1-wheezy)
Tagging node:6.9.1-wheezy
Tagging node:6.9-wheezy
Tagging node:6-wheezy
Tagging node:boron-wheezy
$ test/run.sh node:6.9.1-wheezy
testing node:6.9.1-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.6.2
Using bashbrew/cache:57106e02415a1a01e2857efd4bcbc9f49bd4fe3e4c843d183b2aa8fe392a9f42 (node:4.6.2)
Tagging node:4.6.2
Tagging node:4.6
Tagging node:4
Tagging node:argon
$ test/run.sh node:4.6.2
testing node:4.6.2
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.6.2-alpine
Building bashbrew/cache:b443c10774a2b30bcfa3b8be34b50d8f1fc9b1a67add694c761bb2d90dd334a1 (node:4.6.2-alpine)
Tagging node:4.6.2-alpine
Tagging node:4.6-alpine
Tagging node:4-alpine
Tagging node:argon-alpine
$ test/run.sh node:4.6.2-alpine
testing node:4.6.2-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.6.2-onbuild
Using bashbrew/cache:7ef8be76ba5c932335b453cdf755386551a97d4c23d2011bea0757b84dd77e29 (node:4.6.2-onbuild)
Tagging node:4.6.2-onbuild
Tagging node:4.6-onbuild
Tagging node:4-onbuild
Tagging node:argon-onbuild
$ test/run.sh node:4.6.2-onbuild
testing node:4.6.2-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:4.6.2-slim
Using bashbrew/cache:53d272eff92baf5c083ecb09f207e1482b16df572ba9f7f88ebef44b5a4e75b6 (node:4.6.2-slim)
Tagging node:4.6.2-slim
Tagging node:4.6-slim
Tagging node:4-slim
Tagging node:argon-slim
$ test/run.sh node:4.6.2-slim
testing node:4.6.2-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.6.2-wheezy
Using bashbrew/cache:ba524f1cad2ceb88fd2fcaa60f8e74cb9861d39154b7f662515aaee5ec87bb9b (node:4.6.2-wheezy)
Tagging node:4.6.2-wheezy
Tagging node:4.6-wheezy
Tagging node:4-wheezy
Tagging node:argon-wheezy
$ test/run.sh node:4.6.2-wheezy
testing node:4.6.2-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:0.12.17
Using bashbrew/cache:6bae021b3b2a4c348a8dba43db93ea88eba9d2aa4a34a1786ec31e574939cdb1 (node:0.12.17)
Tagging node:0.12.17
Tagging node:0.12
Tagging node:0
$ test/run.sh node:0.12.17
testing node:0.12.17
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:0.12.17-onbuild
Using bashbrew/cache:74178b72e9bf90eae9b5aa343e415e6fa8bada37d26b8a03b39e8b503653e975 (node:0.12.17-onbuild)
Tagging node:0.12.17-onbuild
Tagging node:0.12-onbuild
Tagging node:0-onbuild
$ test/run.sh node:0.12.17-onbuild
testing node:0.12.17-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:0.12.17-slim
Using bashbrew/cache:5e778bad31828481eb01f9800bd9dac78af43ff5f2d20ff4ae54f413b694a925 (node:0.12.17-slim)
Tagging node:0.12.17-slim
Tagging node:0.12-slim
Tagging node:0-slim
$ test/run.sh node:0.12.17-slim
testing node:0.12.17-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:0.12.17-wheezy
Using bashbrew/cache:833536a9e4b8f8c7235a64bb3002797dfe2e366c1a4005ccb04786e0b957d364 (node:0.12.17-wheezy)
Tagging node:0.12.17-wheezy
Tagging node:0.12-wheezy
Tagging node:0-wheezy
$ test/run.sh node:0.12.17-wheezy
testing node:0.12.17-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:0.10.48
Using bashbrew/cache:1a6efb250246cbea7cade2b54accbcc2f636c88e3ffece1aea5247e7f6a32f95 (node:0.10.48)
Tagging node:0.10.48
Tagging node:0.10
$ test/run.sh node:0.10.48
testing node:0.10.48
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:0.10.48-onbuild
Using bashbrew/cache:943b35362bbde4049d5320ac20cd4df662e66704373f98d6d0ca18a519037e77 (node:0.10.48-onbuild)
Tagging node:0.10.48-onbuild
Tagging node:0.10-onbuild
$ test/run.sh node:0.10.48-onbuild
testing node:0.10.48-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:0.10.48-slim
Using bashbrew/cache:858a5f7f0e516a2c8b3db40bbc5a13c9b0b6c73fa78f6da9021f225bdbfd391f (node:0.10.48-slim)
Tagging node:0.10.48-slim
Tagging node:0.10-slim
$ test/run.sh node:0.10.48-slim
testing node:0.10.48-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:0.10.48-wheezy
Using bashbrew/cache:4513d1b751273413209adcef70482997921dd4b8b914a2bec4c3f4feef25029c (node:0.10.48-wheezy)
Tagging node:0.10.48-wheezy
Tagging node:0.10-wheezy
$ test/run.sh node:0.10.48-wheezy
testing node:0.10.48-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note that this only adds an Alpine variant for the v7, v6 and v4
versions. The v0.10 and v0.12 releases are either EOL or will be later
this year and will no longer be updated.
Reference: