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 b468155 commit 18f65a1Copy full SHA for 18f65a1
1 file changed
docker/Dockerfile.backend
@@ -1,15 +1,15 @@
1
-FROM rust:1.88 AS build
+FROM rust:1.93 AS build
2
3
WORKDIR /app
4
5
-RUN apt update
6
-RUN apt install -y build-essential pkg-config libssl-dev cmake
+RUN apt update
+RUN apt install -y build-essential pkg-config libssl-dev cmake
7
8
COPY ./Cargo.toml ./Cargo.toml
9
COPY ./backend ./backend
10
11
RUN cargo build --release
12
13
-FROM rust:1.88-slim
+FROM rust:1.93-slim
14
COPY --from=build /app/target/release/asteria-backend .
15
CMD ["./asteria-backend"]
0 commit comments