Skip to content

Commit dbd264c

Browse files
authored
Merge pull request #1333 from KaneOne/patch-2
Add entrypoint environment variable to Docker params
2 parents 5805f76 + c3afa6e commit dbd264c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

templates/cli/lib/emulation/docker.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ export async function dockerStart(
219219
params.push("-p", `${port}:3000`);
220220
params.push("-e", "OPEN_RUNTIMES_ENV=development");
221221
params.push("-e", "OPEN_RUNTIMES_SECRET=");
222+
params.push("-e", `OPEN_RUNTIMES_ENTRYPOINT=${func.entrypoint}`);
222223

223224
for (const k of Object.keys(variables)) {
224225
params.push("-e", `${k}=${variables[k]}`);

0 commit comments

Comments
 (0)