Files
micro-service-api/Dockerfile
supphakitd e296f41198
Some checks failed
Build Docker Image / Build Docker Image (push) Failing after 2m49s
workflow: initial testing
Signed-off-by: supphakitd <67319010028@technictrang.ac.th>
2025-11-21 10:24:38 +07:00

17 lines
293 B
Docker

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"]