workflow: fix path for executing api entrypoint
All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 3m15s

This commit is contained in:
2025-11-21 11:03:51 +07:00
parent 2dcd432802
commit c99ef8e64d
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ ADD entrypoint /entrypoint
RUN apk update && apk add npm
RUN chmod +x ./entrypoint
RUN mkdir server
RUN mkdir /server
ADD node_modules /server
ADD package-lock.json /server

View File

@@ -1,3 +1,3 @@
#!/bin/sh
cd server/exthernal-login-api && exec npm run dev
cd /server/exthernal-login-api && exec npm run dev