We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff4e86 commit 10685e9Copy full SHA for 10685e9
1 file changed
stackbrew.js
@@ -28,7 +28,7 @@ const versions = Object.keys(config).reverse()
28
let midnight = new Date()
29
midnight.setHours(0, 0, 0, 0)
30
const now = midnight.getTime()
31
-const aplineRE = new RegExp(/alpine*/);
+const alpineRE = new RegExp(/alpine*/);
32
const slimRE = new RegExp(/\*-slim/);
33
let foundLTS = false;
34
let foundCurrent = false;
@@ -46,7 +46,7 @@ for (const version of versions) {
46
let fullversion;
47
for (const variant in variants) {
48
let dockerfilePath = path.join(version, variant, 'Dockerfile');
49
- let isAlpine = aplineRE.test(variant)
+ let isAlpine = alpineRE.test(variant)
50
let isSlim = slimRE.test(variant)
51
let isDefaultSlim = new RegExp(`${defaultDebian}-slim`).test(variant)
52
0 commit comments