Files
Test-IP/Dockerfile
T

9 lines
112 B
Docker
Raw Normal View History

2023-03-19 11:26:55 +07:00
FROM node:18 as build
WORKDIR /home/node/app
COPY . .
RUN apt-get update -y
RUN yarn
CMD ["node", "index.js"]