Skip to content

Commit b90afc8

Browse files
committed
nodesource apt repo not supported on i386
1 parent 7e7ffca commit b90afc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
tags: ${{ steps.docker_meta.outputs.tags }}
7676
cache-from: type=local,src=/tmp/.buildx-cache
7777
cache-to: type=local,dest=/tmp/.buildx-cache
78-
platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7
78+
platforms: linux/amd64,linux/arm64,linux/arm/v7
7979

8080
- name: Image digest
8181
run: echo ${{ steps.docker_build.outputs.digest }}

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ RUN curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
6363
&& apt-get update -qq \
6464
&& apt-get install -qq -y --no-install-recommends \
6565
nodejs \
66-
&& npm install -g npm \
66+
# && npm install -g npm \
6767
&& rm -rf /var/lib/apt/lists/*
6868

6969
# Install Node dependencies
@@ -83,7 +83,7 @@ ADD ./pip_dist/archivebox.egg-info/requires.txt "$CODE_DIR/pip_dist/archivebox.e
8383
RUN apt-get update -qq \
8484
&& apt-get install -qq -y --no-install-recommends \
8585
build-essential python-dev python3-dev \
86-
&& pip install --upgrade pip \
86+
# && pip install --upgrade pip \
8787
&& grep -B 1000 -E '^$' "$CODE_DIR/pip_dist/archivebox.egg-info/requires.txt" | pip install --quiet -r /dev/stdin \
8888
&& pip install --quiet "sonic-client==0.0.5" \
8989
&& apt-get purge -y build-essential python-dev python3-dev \

0 commit comments

Comments
 (0)