Docker images > 1.17.0 are broken because of wrong baseimage (#33709)

fix(dockerfile): make sure to use the bullseye image for building

Solana's release image is based on bullseye, make sure we compile Solana with the same environment
This commit is contained in:
Thomas P 2023-10-20 19:17:03 +02:00 committed by GitHub
parent e13756133a
commit 96052d230a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Note: when the rust version is changed also modify
# ci/rust-version.sh to pick up the new image tag
FROM rust:1.73.0
FROM rust:1.73.0-bullseye
ARG NODE_MAJOR=18