add Dockerfile & update response api

This commit is contained in:
solehudin5699
2024-03-08 22:10:21 +07:00
parent 67481f1d19
commit 9dc2020ad2
6 changed files with 1235 additions and 59 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:14-alpine
WORKDIR /app
COPY package*.json .
RUN npm i
COPY . .
EXPOSE 5000
CMD [ "npm","start" ]