Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

Commit c8a0adf

Browse files
Use ubuntu jammy on dockerfile
1 parent 0992482 commit c8a0adf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ RUN git clone https://github.com/apple/swift-format.git && \
2828
sed -i -e 's/.upToNextMinor(from: "0.50700.0")/exact: "0.50700.0"/' Package.swift && \
2929
swift build -c release
3030

31-
FROM ubuntu:20.04 as binaryen
31+
FROM ubuntu:22.04 as binaryen
3232

3333
RUN apt-get update && apt-get install -y curl
3434
RUN curl -L -v -o binaryen.tar.gz https://github.com/WebAssembly/binaryen/releases/download/version_105/binaryen-version_105-x86_64-linux.tar.gz
3535
RUN tar xzvf binaryen.tar.gz
3636

37-
FROM ubuntu:20.04 as symbolicator-builder
37+
FROM ubuntu:22.04 as symbolicator-builder
3838

3939
ARG SYMBOLICATOR_VERSION
4040
RUN apt-get update && apt-get install -y curl
@@ -44,7 +44,7 @@ FROM $SWIFT_DOCKER_IMAGE-slim as swiftwasm-builder
4444

4545
ARG SWIFT_TAG
4646
ARG NODE_VERSION
47-
ARG SWIFT_PLATFORM_SUFFIX=ubuntu20.04_x86_64.tar.gz
47+
ARG SWIFT_PLATFORM_SUFFIX=ubuntu22.04_x86_64.tar.gz
4848
ARG OPEN_JDK_VERSION
4949
ARG CYPRESS_VERSION
5050

@@ -92,6 +92,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
9292
fonts-noto-color-emoji \
9393
fonts-indic \
9494
fonts-thai-tlwg-ttf \
95+
unzip \
9596
&& rm -rf /var/lib/apt/lists/*
9697

9798
# Install yarn

0 commit comments

Comments
 (0)