Skip to content

Commit 36c74c7

Browse files
committed
Drops 32bit support (nodeJS 11 dropped it)
1 parent 8f2fdd8 commit 36c74c7

File tree

5 files changed

+3
-44
lines changed

5 files changed

+3
-44
lines changed

Dockerfile.amd64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN rm -rf /var/lib/apt/lists/* && \
1313
apt-get remove gnupg -y && apt-get install --reinstall gnupg2 dirmngr --allow-unauthenticated -y && \
1414
apt-get autoclean && apt-get update && apt-get install -y apt-transport-https ca-certificates curl gnupg --no-install-recommends && \
1515
curl -sSL https://deb.nodesource.com/setup_11.x | bash - && \
16-
apt-get update && apt-get install -y nodejs --no-install-recommends && \
16+
apt-get install -y nodejs --no-install-recommends && \
1717
npm --global install npm && \
1818
npm --global install yarn && \
1919
apt-get purge --auto-remove -y curl gnupg && \

Dockerfile.arm32v7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN rm -rf /var/lib/apt/lists/* && \
1717
wget -O ./tmpkey "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3B4FE6ACC0B21F32" | apt-key add ./tmpkey; \
1818
apt-get autoclean && apt-get update && apt-get install -y apt-transport-https ca-certificates curl gnupg --no-install-recommends && \
1919
curl -sSL https://deb.nodesource.com/setup_11.x | bash - && \
20-
apt-get update && apt-get install -y nodejs --no-install-recommends && \
20+
apt-get install -y nodejs --no-install-recommends && \
2121
npm config set unsafe-perm true && \
2222
npm --global install npm && \
2323
npm --global install yarn && \

Dockerfile.i386

Lines changed: 0 additions & 36 deletions
This file was deleted.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CACHE ?= --no-cache=1
22
VERSION ?= v4.1.0
33
FULLVERSION ?= v4.1.0
4-
archs ?= arm32v7 amd64 i386
4+
archs ?= arm32v7 amd64
55
.PHONY: all build publish latest
66
all: build publish latest
77
qemu-arm-static:

manifest.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ manifests:
66
architecture: arm
77
variant: v7
88
os: linux
9-
-
10-
image: femtopixel/google-lighthouse:$VERSION-i386
11-
platform:
12-
architecture: 386
13-
os: linux
149
-
1510
image: femtopixel/google-lighthouse:$VERSION-amd64
1611
platform:

0 commit comments

Comments
 (0)