Skip to content

Commit 1dd3c00

Browse files
docker: Update org name and Ubuntu version (otter-sec#2533)
1 parent 2684cc5 commit 1dd3c00

7 files changed

Lines changed: 6 additions & 8 deletions

File tree

cli/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ impl Config {
439439
.anchor_version
440440
.clone()
441441
.unwrap_or_else(|| crate::DOCKER_BUILDER_VERSION.to_string());
442-
format!("projectserum/build:v{ver}")
442+
format!("backpackapp/build:v{ver}")
443443
}
444444

445445
pub fn discover(cfg_override: &ConfigOverride) -> Result<Option<WithPath<Config>>> {

cli/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3432,7 +3432,6 @@ fn airdrop(cfg_override: &ConfigOverride) -> Result<()> {
34323432

34333433
fn cluster(_cmd: ClusterCommand) -> Result<()> {
34343434
println!("Cluster Endpoints:\n");
3435-
println!("* Mainnet - https://solana-api.projectserum.com");
34363435
println!("* Mainnet - https://api.mainnet-beta.solana.com");
34373436
println!("* Devnet - https://api.devnet.solana.com");
34383437
println!("* Testnet - https://api.testnet.solana.com");

docker/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SOLANA_CLI=v1.16.0
1010
#
1111
# Build version should match the Anchor cli version.
1212
#
13-
IMG_ORG ?= projectserum
13+
IMG_ORG ?= backpackapp
1414
IMG_VER ?= $(ANCHOR_CLI)
1515

1616
.PHONY: build build-push build-shell publish

docker/build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# is released on GitHub.
55
#
66

7-
FROM ubuntu:18.04
7+
FROM ubuntu:22.04
88

99
ARG DEBIAN_FRONTEND=noninteractive
1010

docs/src/pages/docs/cli.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ This lists cluster endpoints:
8787
```shell
8888
Cluster Endpoints:
8989

90-
* Mainnet - https://solana-api.projectserum.com
9190
* Mainnet - https://api.mainnet-beta.solana.com
9291
* Devnet - https://api.devnet.solana.com
9392
* Testnet - https://api.testnet.solana.com

docs/src/pages/docs/manifest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Example:
3434

3535
```
3636
[registry]
37-
url = "https://anchor.projectserum.com"
37+
url = "https://api.apr.dev"
3838
```
3939

4040
## features

docs/src/pages/docs/verifiable-builds.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ If the program has an IDL, it will also check the IDL deployed on chain matches.
3737

3838
## Images
3939

40-
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
40+
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
4141

4242
```shell
43-
docker pull projectserum/build:v0.28.0
43+
docker pull backpackapp/build:v0.28.0
4444
```
4545

4646
## Removing an Image

0 commit comments

Comments
 (0)