docker: Update org name and Ubuntu version (#2533)

This commit is contained in:
acheron 2023-06-14 20:41:20 +02:00 committed by GitHub
parent c2a36f9e42
commit 78d48552c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 6 additions and 8 deletions

View File

@ -439,7 +439,7 @@ impl Config {
.anchor_version .anchor_version
.clone() .clone()
.unwrap_or_else(|| crate::DOCKER_BUILDER_VERSION.to_string()); .unwrap_or_else(|| crate::DOCKER_BUILDER_VERSION.to_string());
format!("projectserum/build:v{ver}") format!("backpackapp/build:v{ver}")
} }
pub fn discover(cfg_override: &ConfigOverride) -> Result<Option<WithPath<Config>>> { pub fn discover(cfg_override: &ConfigOverride) -> Result<Option<WithPath<Config>>> {

View File

@ -3432,7 +3432,6 @@ fn airdrop(cfg_override: &ConfigOverride) -> Result<()> {
fn cluster(_cmd: ClusterCommand) -> Result<()> { fn cluster(_cmd: ClusterCommand) -> Result<()> {
println!("Cluster Endpoints:\n"); println!("Cluster Endpoints:\n");
println!("* Mainnet - https://solana-api.projectserum.com");
println!("* Mainnet - https://api.mainnet-beta.solana.com"); println!("* Mainnet - https://api.mainnet-beta.solana.com");
println!("* Devnet - https://api.devnet.solana.com"); println!("* Devnet - https://api.devnet.solana.com");
println!("* Testnet - https://api.testnet.solana.com"); println!("* Testnet - https://api.testnet.solana.com");

View File

@ -10,7 +10,7 @@ SOLANA_CLI=v1.16.0
# #
# Build version should match the Anchor cli version. # Build version should match the Anchor cli version.
# #
IMG_ORG ?= projectserum IMG_ORG ?= backpackapp
IMG_VER ?= $(ANCHOR_CLI) IMG_VER ?= $(ANCHOR_CLI)
.PHONY: build build-push build-shell publish .PHONY: build build-push build-shell publish

View File

@ -4,7 +4,7 @@
# is released on GitHub. # is released on GitHub.
# #
FROM ubuntu:18.04 FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive

View File

@ -87,7 +87,6 @@ This lists cluster endpoints:
```shell ```shell
Cluster Endpoints: Cluster Endpoints:
* Mainnet - https://solana-api.projectserum.com
* Mainnet - https://api.mainnet-beta.solana.com * Mainnet - https://api.mainnet-beta.solana.com
* Devnet - https://api.devnet.solana.com * Devnet - https://api.devnet.solana.com
* Testnet - https://api.testnet.solana.com * Testnet - https://api.testnet.solana.com

View File

@ -34,7 +34,7 @@ Example:
``` ```
[registry] [registry]
url = "https://anchor.projectserum.com" url = "https://api.apr.dev"
``` ```
## features ## features

View File

@ -37,10 +37,10 @@ If the program has an IDL, it will also check the IDL deployed on chain matches.
## Images ## Images
A docker image for each version of Anchor is published on [Docker Hub](https://hub.docker.com/r/projectserum/build). They are tagged in the form `projectserum/build:<version>`. For example, to get the image for Anchor `v0.28.0` one can run A docker image for each version of Anchor is published on [Docker Hub](https://hub.docker.com/r/backpackapp/build). They are tagged in the form `backpackapp/build:<version>`. For example, to get the image for Anchor `v0.28.0` one can run
```shell ```shell
docker pull projectserum/build:v0.28.0 docker pull backpackapp/build:v0.28.0
``` ```
## Removing an Image ## Removing an Image