Commit 8bacfad 1 parent 0a5c067 commit 8bacfad Copy full SHA for 8bacfad
File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ WORKDIR /app
5
5
# Get Ubuntu packages
6
6
RUN apt-get update && apt-get install -y \
7
7
build-essential \
8
- cargo
8
+ curl
9
9
10
10
COPY ../headless_browser/ ./headless_browser
11
11
COPY ../headless_browser_lib/ ./headless_browser_lib
12
12
COPY ../benches/ ./benches
13
13
COPY ../Cargo.* .
14
14
15
- RUN rustup update stable
15
+ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && source $HOME/.cargo/env && rustup update stable
16
16
RUN RUST_LOG=error cargo install --no-default-features --path headless_browser
17
17
18
18
FROM ubuntu:25.04
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ COPY ../headless_browser_lib/ ./headless_browser_lib
12
12
COPY ../benches/ ./benches
13
13
COPY ../Cargo.* .
14
14
15
- RUN rustup update stable
15
+ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && source $HOME/.cargo/env && rustup update stable
16
16
RUN RUST_LOG=error cargo install --no-default-features --path headless_browser
17
17
18
18
FROM mcr.microsoft.com/playwright:v1.50.1-noble
Original file line number Diff line number Diff line change 1
- FROM ubuntu:22 .04 AS pandabuilder
1
+ FROM ubuntu:25 .04 AS pandabuilder
2
2
3
3
ARG ZIG=0.13.0
4
4
ARG ZIG_MINISIG=RWSGOq2NVecA2UPNdBUZykf1CCb147pkmdtYxgb3Ti+JO/wCYvhbAb/U
@@ -67,7 +67,7 @@ RUN curl -L -o libc_v8.a https://github.com/lightpanda-io/zig-v8-fork/releases/d
67
67
# build release
68
68
RUN make build
69
69
70
- FROM ubuntu:22 .04 AS rustbuilder
70
+ FROM ubuntu:25 .04 AS rustbuilder
71
71
72
72
WORKDIR /app
73
73
@@ -81,10 +81,10 @@ COPY ../headless_browser_lib/ ./headless_browser_lib
81
81
COPY ../benches/ ./benches
82
82
COPY ../Cargo.* .
83
83
84
- RUN rustup update stable
84
+ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && source $HOME/.cargo/env && rustup update stable
85
85
RUN RUST_LOG=error cargo install --no-default-features --path headless_browser
86
86
87
- FROM ubuntu:22 .04
87
+ FROM ubuntu:25 .04
88
88
89
89
ARG VERSION=latest
90
90
You can’t perform that action at this time.
0 commit comments