Docker: fix path for scripts
All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 2m53s

Signed-off-by: supphakitd <67319010028@technictrang.ac.th>
This commit is contained in:
2025-11-21 17:17:17 +07:00
parent 2dee76e1c7
commit 7584e0fb8e
2 changed files with 6 additions and 3 deletions

View File

@@ -14,7 +14,10 @@ ADD package.json /server/package.json
ADD exthernal-login-api /server/exthernal-login-api
ADD exthernal-ttc-api /server/exthernal-ttc-api
ADD start-accountingwep.sh /server/start-accountingwep.sh
ADD start-login.sh /server/start-login.sh
ADD start-accountingwep.sh /start-accountingwep.sh
ADD start-login.sh /start-login.sh
RUN chmod +x /start-accountingwep.sh
RUN chmod +x /start-login.sh
ENTRYPOINT ["/entrypoint"]

View File

@@ -1,3 +1,3 @@
#!/bin/sh
./start-login.sh &
./start-login.sh &
exec ./start-accountingwep.sh