Skip to content

Commit 86bb456

Browse files
emily-shenedmundhung
authored andcommitted
PR fixups
1 parent 3dcef28 commit 86bb456

File tree

4 files changed

+3
-59
lines changed

4 files changed

+3
-59
lines changed

packages/containers-shared/src/images.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import type {
1717
WranglerLogger,
1818
} from "./types";
1919

20-
const DEFAULT_CONTAINER_EGRESS_INTERCEPTOR_IMAGE =
20+
export const DEFAULT_CONTAINER_EGRESS_INTERCEPTOR_IMAGE =
2121
"cloudflare/proxy-everything:3f5e832@sha256:816255f5b6ebdc2cdcddb578d803121e7ee9cfe178442da07725d75a66cdcf37";
2222

2323
export function getEgressInterceptorImage(): string {

packages/containers-shared/tests/images.test.ts

Lines changed: 0 additions & 54 deletions
This file was deleted.

packages/miniflare/src/plugins/core/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import path from "node:path";
55
import { Readable } from "node:stream";
66
import tls from "node:tls";
77
import { TextEncoder } from "node:util";
8+
import { DEFAULT_CONTAINER_EGRESS_INTERCEPTOR_IMAGE } from "@cloudflare/containers-shared";
89
import { bold } from "kleur/colors";
910
import { MockAgent } from "undici";
1011
import SCRIPT_ENTRY from "worker:core/entry";
@@ -1211,9 +1212,6 @@ function getWorkerScript(
12111212
}
12121213
}
12131214

1214-
const DEFAULT_CONTAINER_EGRESS_INTERCEPTOR_IMAGE =
1215-
"cloudflare/proxy-everything:3f5e832@sha256:816255f5b6ebdc2cdcddb578d803121e7ee9cfe178442da07725d75a66cdcf37";
1216-
12171215
/**
12181216
* Returns the default containerEgressInterceptorImage. It's used for
12191217
* container network interception for local dev.

packages/wrangler/e2e/containers.dev.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ for (const source of imageSource) {
4747
name: `${workerName}`,
4848
main: "src/index.ts",
4949
compatibility_date: "2025-04-03",
50-
compatibility_flags: ["experimental", "enable_ctx_exports"],
50+
compatibility_flags: ["enable_ctx_exports"],
5151
containers: [
5252
{
5353
image: "./Dockerfile",

0 commit comments

Comments
 (0)