Skip to content

Commit b9a6be6

Browse files
committed
使用するRustを1.63.0に更新した
1 parent c7689b2 commit b9a6be6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

atcoder-problems-backend/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM rust:1.57.0 AS development
1+
FROM rust:1.63.0 AS development
22
RUN rustup component add rustfmt
33
RUN rustup component add clippy
44

55
# 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
77
WORKDIR /app
88

99
FROM chef AS planner
@@ -18,7 +18,7 @@ COPY . .
1818
RUN cargo build --release
1919

2020
# プロダクション用の Docker イメージをビルドする
21-
FROM rust:1.61.0 AS production
21+
FROM rust:1.63.0 AS production
2222
COPY --from=builder /app/target/release/batch_update /usr/bin/batch_update
2323
COPY --from=builder /app/target/release/crawl_all_submissions /usr/bin/crawl_all_submissions
2424
COPY --from=builder /app/target/release/crawl_for_virtual_contests /usr/bin/crawl_for_virtual_contests

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- "15432:5432"
1515

1616
backend-development:
17-
image: rust:1.57
17+
image: rust:1.63.0
1818
environment:
1919
SQL_URL: postgres://db_user:db_pass@postgresql:5432/test_db
2020
DATABASE_URL: postgres://db_user:db_pass@postgresql:5432/test_db

0 commit comments

Comments
 (0)