File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM rust:1.57 .0 AS development
1
+ FROM rust:1.63 .0 AS development
2
2
RUN rustup component add rustfmt
3
3
RUN rustup component add clippy
4
4
5
5
# Using the official cargo-chef image
6
- FROM lukemathwalker/cargo-chef:latest-rust-1.61 .0 AS chef
6
+ FROM lukemathwalker/cargo-chef:latest-rust-1.63 .0 AS chef
7
7
WORKDIR /app
8
8
9
9
FROM chef AS planner
@@ -18,7 +18,7 @@ COPY . .
18
18
RUN cargo build --release
19
19
20
20
# プロダクション用の Docker イメージをビルドする
21
- FROM rust:1.61 .0 AS production
21
+ FROM rust:1.63 .0 AS production
22
22
COPY --from=builder /app/target/release/batch_update /usr/bin/batch_update
23
23
COPY --from=builder /app/target/release/crawl_all_submissions /usr/bin/crawl_all_submissions
24
24
COPY --from=builder /app/target/release/crawl_for_virtual_contests /usr/bin/crawl_for_virtual_contests
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ services:
14
14
- " 15432:5432"
15
15
16
16
backend-development :
17
- image : rust:1.57
17
+ image : rust:1.63.0
18
18
environment :
19
19
SQL_URL : postgres://db_user:db_pass@postgresql:5432/test_db
20
20
DATABASE_URL : postgres://db_user:db_pass@postgresql:5432/test_db
You can’t perform that action at this time.
0 commit comments