Skip to content

Commit 9e2b585

Browse files
Merge pull request #713 from LaurentGoderre/no-default-variant
Don't use a default variant in the repo (ony in stackbrew)
2 parents 538ac6b + 11a62b6 commit 9e2b585

17 files changed

+76
-48
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- stage: Build
8888
env:
8989
- NODE_VERSION: "10"
90-
- VARIANT: "default"
90+
- VARIANT: "jessie"
9191

9292
- stage: Build
9393
env:
@@ -107,7 +107,7 @@ jobs:
107107
- stage: Build
108108
env:
109109
- NODE_VERSION: "6"
110-
- VARIANT: "default"
110+
- VARIANT: "jessie"
111111

112112
- stage: Build
113113
env:
@@ -132,7 +132,7 @@ jobs:
132132
- stage: Build
133133
env:
134134
- NODE_VERSION: "8"
135-
- VARIANT: "default"
135+
- VARIANT: "jessie"
136136

137137
- stage: Build
138138
env:
@@ -157,7 +157,7 @@ jobs:
157157
- stage: Build
158158
env:
159159
- NODE_VERSION: "9"
160-
- VARIANT: "default"
160+
- VARIANT: "jessie"
161161

162162
- stage: Build
163163
env:
File renamed without changes.

6/architectures

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bashbrew-arch variants
2-
arm32v7 default,onbuild,slim,stretch
3-
arm64v8 default,onbuild,slim,stretch
4-
amd64 default,alpine,onbuild,slim,stretch
5-
i386 default,onbuild,slim,stretch
6-
ppc64le default,onbuild,slim,stretch
7-
s390x default,onbuild,slim,stretch
2+
arm32v7 jessie,onbuild,slim,stretch
3+
arm64v8 jessie,onbuild,slim,stretch
4+
amd64 jessie,alpine,onbuild,slim,stretch
5+
i386 jessie,onbuild,slim,stretch
6+
ppc64le jessie,onbuild,slim,stretch
7+
s390x jessie,onbuild,slim,stretch
File renamed without changes.

6/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:6.14.2
1+
FROM node:6.14.2-jessie
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app
File renamed without changes.

8/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:8.11.2
1+
FROM node:8.11.2-jessie
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app
File renamed without changes.

9/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:9.11.1
1+
FROM node:9.11.1-jessie
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app
File renamed without changes.

0 commit comments

Comments
 (0)