Skip to content

Commit 18f65a1

Browse files
fix: Update backend base image (#140)
1 parent b468155 commit 18f65a1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docker/Dockerfile.backend

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
FROM rust:1.88 AS build
1+
FROM rust:1.93 AS build
22

33
WORKDIR /app
44

5-
RUN apt update
6-
RUN apt install -y build-essential pkg-config libssl-dev cmake
5+
RUN apt update
6+
RUN apt install -y build-essential pkg-config libssl-dev cmake
77

88
COPY ./Cargo.toml ./Cargo.toml
99
COPY ./backend ./backend
1010

1111
RUN cargo build --release
1212

13-
FROM rust:1.88-slim
13+
FROM rust:1.93-slim
1414
COPY --from=build /app/target/release/asteria-backend .
1515
CMD ["./asteria-backend"]

0 commit comments

Comments
 (0)