We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f092207 commit fce7f8dCopy full SHA for fce7f8d
Earthfile
@@ -2,7 +2,7 @@ VERSION --try 0.8
2
PROJECT ontola/atomic-server
3
IMPORT ./browser AS browser
4
IMPORT github.com/earthly/lib/rust AS rust
5
-FROM rust:buster
+FROM rust:bookworm
6
WORKDIR /code
7
8
pipeline:
@@ -33,6 +33,8 @@ docker-all:
33
34
install:
35
RUN apt-get update -qq
36
+ # NASM is required for the image library
37
+ RUN apt install nasm
38
RUN rustup component add clippy
39
RUN rustup component add rustfmt
40
RUN cargo install cross
0 commit comments