Nchat / Dockerfile
blfm's picture
Update Dockerfile
d57d056 verified
raw
history blame contribute delete
227 Bytes
FROM node:22
RUN git clone --depth 1 https://github.com/tianzhentech/NeatChat
WORKDIR "NeatChat"
COPY . .
RUN npm install \
&& npm install next@^14 --save-exact \
&& npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]