1
0
Fork 0

fix(image): correct ep path for CLI image, remove esm

This commit is contained in:
Sean Sube 2022-10-21 12:09:27 -05:00
parent e0a6b6f045
commit ba73d2157b
1 changed files with 1 additions and 1 deletions

View File

@ -10,4 +10,4 @@ WORKDIR /app
# install native modules
RUN yarn install --production
ENTRYPOINT [ "node", "--require", "esm", "/app/out/src/index.js" ]
ENTRYPOINT [ "node", "/app/out/src/cli.js" ]