workflow: initial testing
Some checks failed
Build Docker Image / Build Docker Image (push) Failing after 2m49s

Signed-off-by: supphakitd <67319010028@technictrang.ac.th>
This commit is contained in:
2025-11-21 10:24:38 +07:00
parent 0d26b67165
commit e296f41198
4 changed files with 46 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM alpine:latest
ADD entrypoint /entrypoint
RUN apk update && apk add npm
RUN chmod +x ./entrypoint
RUN mkdir server
ADD node_modules /server
ADD package-lock.json /server
ADD package.json /server
ADD exthernal-login-api /server
ADD exthernal-ttc-api /server
ENTRYPOINT ["/entrypoint"]