Skip to content

Commit 9053198

Browse files
committed
chore(dev): update environment image (#23816)
* chore(dev): update environment image * ran cargo fmt
1 parent e17a682 commit 9053198

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export CURRENT_DIR = $(shell pwd)
4848
# Override this to automatically enter a container containing the correct, full, official build environment for Vector, ready for development
4949
export ENVIRONMENT ?= false
5050
# The upstream container we publish artifacts to on a successful master build.
51-
export ENVIRONMENT_UPSTREAM ?= docker.io/timberio/vector-dev:sha-3eadc96742a33754a5859203b58249f6a806972a
51+
export ENVIRONMENT_UPSTREAM ?= docker.io/timberio/vector-dev:latest
5252
# Override to disable building the container, having it pull from the GitHub packages repo instead
5353
# TODO: Disable this by default. Blocked by `docker pull` from GitHub Packages requiring authenticated login
5454
export ENVIRONMENT_AUTOBUILD ?= true

vdev/src/testing/runner.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ const TEST_COMMAND: &[&str] = &[
2727
"--no-default-features",
2828
];
2929
// The upstream container we publish artifacts to on a successful master build.
30-
const UPSTREAM_IMAGE: &str =
31-
"docker.io/timberio/vector-dev:sha-3eadc96742a33754a5859203b58249f6a806972a";
30+
const UPSTREAM_IMAGE: &str = "docker.io/timberio/vector-dev:latest";
3231

3332
pub enum RunnerState {
3433
Running,

0 commit comments

Comments
 (0)