Skip to content

Commit 74355da

Browse files
authored
chore(docker): upgrade image buildpack-deps:focal-curl to jammy-curl 22.04 (BREAKING) (#8779)
- Required upgrading packages `python`->`python3`, wine-stable `6` -> `9`, and added `python2` for backward compatibility (note, `python` alias does not get created by `apt-get install`, must be accessed via `python2`) - Adds `powershell` to `wine` image for Azure Signing - Adds `--platform=linux/x86_64` in `FROM` line so as to allow building these images on arm64 macs - Manually adds `libssl1.1` to `base` Docker image since Ubuntu 22.04 upgraded to `libssl3` and some upstream dependencies (e.g. `osslsigncode`) still require `libssl1.1`. - Adds windows installer unit tests to linux matrix runners
1 parent 6f6e272 commit 74355da

File tree

9 files changed

+61
-34
lines changed

9 files changed

+61
-34
lines changed

.changeset/funny-pandas-worry.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"electron-builder": major
3+
---
4+
5+
chore: upgrade buildpack-deps base image from `focal` to `jammy`. This also forces upgrading `python`->`python3` package and wine-stable

.github/workflows/docker-build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
build-docker-images:
1111
runs-on: ubuntu-22.04
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
nodeVersion: [
1516
# 22.13.0,

.github/workflows/test.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ jobs:
7171
testFiles:
7272
- ArtifactPublisherTest,BuildTest,ExtraBuildTest,RepoSlugTest,binDownloadTest,configurationValidationTest,filenameUtilTest,filesTest,globTest,ignoreTest,macroExpanderTest,mainEntryTest,urlUtilTest,extraMetadataTest,linuxArchiveTest,linuxPackagerTest,HoistedNodeModuleTest,MemoLazyTest
7373
- snapTest,debTest,fpmTest,protonTest
74+
- winPackagerTest,installerTest,BuildTest
7475
steps:
7576
- name: Checkout code repository
7677
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
@@ -105,6 +106,7 @@ jobs:
105106
echo $TEST_RUNNER_IMAGE_TAG
106107
pnpm test-linux
107108
env:
109+
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
108110
TEST_FILES: ${{ matrix.testFiles }}
109111
FORCE_COLOR: 1
110112
TEST_RUNNER_IMAGE_TAG: electronuserland/builder:${{ env.TEST_IMAGE_NODE_MAJOR_VERSION }}-wine-mono
@@ -198,4 +200,4 @@ jobs:
198200
run: pnpm ci:test
199201
env:
200202
TEST_FILES: masTest,dmgTest,filesTest,macPackagerTest,differentialUpdateTest
201-
FORCE_COLOR: 1
203+
FORCE_COLOR: 1

docker/base/Dockerfile

+20-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
FROM buildpack-deps:focal-curl
1+
# hardcoding `--platform` with a constant throws a warning during build.
2+
# That's OK as this image can't be built on arm64 machines due to gcc-multilib & g++-multilib only provided for x64
3+
FROM --platform=linux/x86_64 buildpack-deps:22.04-curl
24

3-
ENV DEBIAN_FRONTEND noninteractive
5+
ENV DEBIAN_FRONTEND=noninteractive
46

57
RUN curl -L https://yarnpkg.com/latest.tar.gz | tar xvz && mv yarn-* /yarn && ln -s /yarn/bin/yarn /usr/bin/yarn
6-
RUN apt-get -qq update && apt-get -qq dist-upgrade && \
8+
RUN apt-get update -yqq && apt-get -qq dist-upgrade && \
79
# add repo for git-lfs
810
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
911
# git ssh for using as docker image on CircleCI
@@ -12,23 +14,31 @@ RUN apt-get -qq update && apt-get -qq dist-upgrade && \
1214
# libsecret-1-dev is required even for prebuild keytar (https://atom.github.io/node-keytar/)
1315
apt-get -qq install --no-install-recommends \
1416
qtbase5-dev build-essential autoconf libssl-dev gcc-multilib g++-multilib \
15-
lzip rpm python libcurl4 git git-lfs ssh unzip libarchive-tools \
17+
lzip rpm python2 python3 libcurl4 git git-lfs ssh unzip libarchive-tools \
1618
libxtst6 libsecret-1-dev libopenjp2-tools liblzo2-2 \
1719
&& \
1820
# git-lfs
1921
git lfs install && \
2022
apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/*
2123

22-
COPY test.sh /test.sh
24+
# Resolves the following error due to dependency requirements
25+
# /root/.cache/electron-builder/winCodeSign/winCodeSign-2.6.0/linux/osslsigncode: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
26+
# The missing libcrypto.so.1.1 is part of libssl1.1 but Ubuntu 22.04 upgraded to libssl3, so we must install it manually
27+
ARG LIB_SSL1_VERSION=2.23
28+
RUN wget -q "http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu${LIB_SSL1_VERSION}_amd64.deb" && \
29+
dpkg -i libssl1.1*.deb && \
30+
rm libssl1.1*.deb
31+
32+
COPY ./test.sh /test.sh
2333

2434
WORKDIR /project
2535

2636
# fix error /usr/local/bundle/gems/fpm-1.5.0/lib/fpm/package/freebsd.rb:72:in `encode': "\xE2" from ASCII-8BIT to UTF-8 (Encoding::UndefinedConversionError)
2737
# http://jaredmarkell.com/docker-and-locales/
2838
# http://askubuntu.com/a/601498
29-
ENV LANG C.UTF-8
30-
ENV LANGUAGE C.UTF-8
31-
ENV LC_ALL C.UTF-8
39+
ENV LANG=C.UTF-8
40+
ENV LANGUAGE=C.UTF-8
41+
ENV LC_ALL=C.UTF-8
3242

33-
ENV DEBUG_COLORS true
34-
ENV FORCE_COLOR true
43+
ENV DEBUG_COLORS=true
44+
ENV FORCE_COLOR=true

docker/node/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG IMAGE_VERSION=base
2-
FROM electronuserland/builder:$IMAGE_VERSION
2+
FROM --platform=linux/x86_64 electronuserland/builder:$IMAGE_VERSION
33

4-
ARG NODE_VERSION 20.15.1
4+
ARG NODE_VERSION
55

66
# this package is used for snapcraft and we should not clear apt list - to avoid apt-get update during snap build
77
RUN curl -L https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz | tar xz -C /usr/local --strip-components=1 && \

docker/wine-chrome/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
ARG IMAGE_VERSION=wine
2-
FROM electronuserland/builder:$IMAGE_VERSION
2+
FROM --platform=linux/x86_64 electronuserland/builder:$IMAGE_VERSION
33

44
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
55
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \
6-
apt-get update -y && apt-get install -y --no-install-recommends xvfb google-chrome-stable libgconf-2-4 && \
6+
apt-get -qq update -y && \
7+
apt-get -qq install -y --no-install-recommends xvfb google-chrome-stable libgconf-2-4 && \
78
# clean
89
apt-get clean && rm -rf /var/lib/apt/lists/*

docker/wine-mono/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ARG IMAGE_VERSION=wine
2-
FROM electronuserland/builder:$IMAGE_VERSION
2+
FROM --platform=linux/x86_64 electronuserland/builder:$IMAGE_VERSION
33

44
# since mono is required only for deprecated target Squirrel.Windows, extracted to separate docker image to reduce size
55

6-
RUN apt-get update -y && \
7-
apt-get install -y --no-install-recommends mono-devel ca-certificates-mono && \
6+
RUN apt-get -qq update -y && \
7+
apt-get -qq install -y --no-install-recommends mono-devel ca-certificates-mono && \
88
apt-get clean && rm -rf /var/lib/apt/lists/*

docker/wine/Dockerfile

+23-15
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,29 @@
11
ARG IMAGE_VERSION=latest
2-
FROM electronuserland/builder:$IMAGE_VERSION
2+
FROM --platform=linux/x86_64 electronuserland/builder:$IMAGE_VERSION
33

44
RUN dpkg --add-architecture i386 && \
5-
curl -Lo /usr/share/keyrings/winehq.asc https://dl.winehq.org/wine-builds/winehq.key && \
6-
echo 'deb [signed-by=/usr/share/keyrings/winehq.asc] https://dl.winehq.org/wine-builds/ubuntu/ focal main' > /etc/apt/sources.list.d/winehq.list && \
7-
apt-get update && \
8-
apt-get install -y --no-install-recommends \
9-
# We can't install `winehq-stable`, we must manually lock each dependency to v6 (ref: https://github.com/electron-userland/electron-builder/issues/6780),
10-
winehq-stable=6.0.4~focal-1 \
11-
wine-stable=6.0.4~focal-1 \
12-
wine-stable-i386=6.0.4~focal-1 \
13-
wine-stable-amd64=6.0.4~focal-1 \
14-
&& \
5+
mkdir -pm755 /etc/apt/keyrings && \
6+
# wine
7+
# https://gitlab.winehq.org/wine/wine/-/wikis/Debian-Ubuntu#install-wine
8+
wget -O - https://dl.winehq.org/wine-builds/winehq.key | gpg --dearmor -o /etc/apt/keyrings/winehq-archive.key - && \
9+
wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources && \
10+
apt-get -qq update && \
11+
apt-get -qq install -y --install-recommends winehq-stable && \
12+
# powershell
13+
# https://learn.microsoft.com/en-us/powershell/scripting/install/install-ubuntu?view=powershell-7.4
14+
apt-get install -yq apt-transport-https software-properties-common && \
15+
wget -q https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb && \
16+
dpkg -i packages-microsoft-prod.deb && \
17+
rm packages-microsoft-prod.deb && \
18+
apt-get -qq update && \
19+
apt-get install -y powershell && \
1520
# clean
16-
apt-get clean && rm -rf /var/lib/apt/lists/*
21+
apt-get clean && \
22+
rm -rf /var/lib/apt/lists/*
1723

18-
RUN curl -L https://github.com/electron-userland/electron-builder-binaries/releases/download/wine-2.0.3-mac-10.13/wine-home.zip > /tmp/wine-home.zip && unzip /tmp/wine-home.zip -d /root/.wine && unlink /tmp/wine-home.zip
24+
ENV WINEDEBUG=-all,err+all
25+
ENV WINEDLLOVERRIDES=winemenubuilder.exe=d
1926

20-
ENV WINEDEBUG -all,err+all
21-
ENV WINEDLLOVERRIDES winemenubuilder.exe=d
27+
# We expect this to error in the logs due to no screen display, but it seems to be the only way to init a ~/.wine config dir
28+
# Note: We could run this via xvfb-run, but since `winecfg` is a GUI config tool, the docker build process hangs as the process never exits
29+
RUN winecfg

test/snapshots/HoistedNodeModuleTest.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ exports[`yarn two package.json w/ native module 2`] = `
492492
"unpacked": true,
493493
},
494494
"pty.node": {
495-
"size": 72880,
495+
"size": 76144,
496496
"unpacked": true,
497497
},
498498
},

0 commit comments

Comments
 (0)