Files
Test-IP/Dockerfile
T
2023-03-19 11:26:55 +07:00

9 lines
112 B
Docker

FROM node:18 as build
WORKDIR /home/node/app
COPY . .
RUN apt-get update -y
RUN yarn
CMD ["node", "index.js"]