mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 13:51:51 +00:00
8 lines
114 B
Text
8 lines
114 B
Text
![]() |
FROM node:18
|
||
|
USER node
|
||
|
|
||
|
COPY --chown=node:node . /zeppelin
|
||
|
|
||
|
WORKDIR /zeppelin/backend
|
||
|
RUN npm ci && npm run build
|