From e7d015487cfb8e51b3332964e53ae682cb4d7745 Mon Sep 17 00:00:00 2001 From: Eric McNiece Date: Wed, 17 May 2023 21:57:01 -0700 Subject: [PATCH] fix: @babel/polyfill not found in Docker container (#831) Co-authored-by: Eric McNiece --- entrypoint | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/entrypoint b/entrypoint index b193e551b..e224f802f 100755 --- a/entrypoint +++ b/entrypoint @@ -1,8 +1,6 @@ #!/usr/bin/env node -require('@babel/polyfill'); - -const launchServer = require('/opt/cncjs/server-cli').default; +const launchServer = require('/opt/cncjs/server-cli'); launchServer().catch(err => { console.error('Error:', err);