dify-conversation/Dockerfile
2025-04-11 08:14:27 +08:00

13 lines
142 B
Docker

FROM --platform=linux/amd64 node:19-bullseye-slim
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn build
EXPOSE 3000
CMD ["yarn","start"]