mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 23:09:59 +00:00
10 lines
134 B
Text
10 lines
134 B
Text
![]() |
FROM node:18
|
||
|
USER node
|
||
|
|
||
|
COPY --chown=node:node . /zeppelin
|
||
|
|
||
|
WORKDIR /zeppelin/backend
|
||
|
RUN ls -lah
|
||
|
RUN pwd
|
||
|
RUN npm ci && npm run build
|