Qwen3-VL-8B-Instruct / Dockerfile
akhaliq's picture
akhaliq HF Staff
Update Dockerfile
3d44e37 verified
raw
history blame contribute delete
174 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 7860
ENV NODE_ENV=production
ENV PORT=7860
CMD ["npm", "start"]