mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-23 04:12:13 +00:00
13 lines
119 B
Docker
13 lines
119 B
Docker
FROM node:lts
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN yarn install
|
|
|
|
RUN npm run build
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["npm", "run", "serve"]
|