ChatUIPro / Dockerfile
dorkai's picture
Add app files
a9df3bb
raw
history blame contribute delete
No virus
142 Bytes
FROM --platform=linux/amd64 node:19-bullseye-slim
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn build
EXPOSE 3000
CMD ["yarn","start"]