File tree Expand file tree Collapse file tree 4 files changed +3
-59
lines changed
miniflare/src/plugins/core Expand file tree Collapse file tree 4 files changed +3
-59
lines changed Original file line number Diff line number Diff 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
2323export function getEgressInterceptorImage ( ) : string {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import path from "node:path";
55import { Readable } from "node:stream" ;
66import tls from "node:tls" ;
77import { TextEncoder } from "node:util" ;
8+ import { DEFAULT_CONTAINER_EGRESS_INTERCEPTOR_IMAGE } from "@cloudflare/containers-shared" ;
89import { bold } from "kleur/colors" ;
910import { MockAgent } from "undici" ;
1011import 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.
Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments