NChat / Dockerfile
lx0xl's picture
Update Dockerfile
fafcdfd verified
raw
history blame contribute delete
305 Bytes
FROM node:22
RUN git clone --depth 1 https://github.com/tianzhentech/NeatChat
WORKDIR "NeatChat"
COPY . .
ENV HIDE_USER_API_KEY=1 \
DEFAULT_MODEL="gemini-2.0-flash-exp@Google"
RUN npm install \
&& npm install next@^14 --save-exact \
&& npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]