mirror of
https://github.com/YuzuZensai/Test-IP.git
synced 2026-07-21 15:19:28 +00:00
9 lines
112 B
Docker
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"] |