mirror of
https://github.com/YuzuZensai/SimpleStaticExpress.git
synced 2026-01-06 04:33:28 +00:00
7 lines
78 B
Docker
7 lines
78 B
Docker
|
|
FROM node
|
||
|
|
WORKDIR /home/node/app
|
||
|
|
|
||
|
|
COPY . .
|
||
|
|
RUN yarn
|
||
|
|
|
||
|
|
CMD [ "node", "index.js"]
|