Skip to content

Commit 245897a

Browse files
authored
Add cpio to Codespaces Dockerfiles (#109817)
Right now it fails when building installers (we don't do that during prebuild so we didn't notice)
1 parent 55eee32 commit 245897a

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.devcontainer/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
99
&& apt-get -y install --no-install-recommends \
1010
clang \
1111
cmake \
12+
cpio \
1213
build-essential \
1314
python3 \
1415
curl \

.devcontainer/android/Dockerfile

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ FROM mcr.microsoft.com/devcontainers/dotnet:${VARIANT}
44
# Set up machine requirements to build the repo
55
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
66
&& apt-get -y install --no-install-recommends \
7-
cmake \
8-
llvm \
97
clang \
8+
cmake \
9+
cpio \
1010
build-essential \
1111
python3 \
1212
curl \
1313
git \
1414
lldb \
15+
llvm \
1516
liblldb-dev \
1617
libunwind8 \
1718
libunwind8-dev \
@@ -22,6 +23,8 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
2223
libkrb5-dev \
2324
zlib1g-dev \
2425
ninja-build \
26+
zlib1g-dev \
27+
ninja-build \
2528
openjdk-17-jdk \
2629
pulseaudio
2730

.devcontainer/wasm-multiThreaded/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
99
&& apt-get -y install --no-install-recommends \
1010
clang \
1111
cmake \
12+
cpio \
1213
build-essential \
1314
python3 \
1415
curl \

.devcontainer/wasm/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
88
&& apt-get -y install --no-install-recommends \
99
clang \
1010
cmake \
11+
cpio \
1112
build-essential \
1213
python3 \
1314
curl \

0 commit comments

Comments
 (0)