hf-oauth-demo / Dockerfile
其天
Refactor to HF-only OAuth demo aligned with ms-oauth-studio structure
03be224
Raw
History Blame Contribute Delete
134 Bytes
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 7860
CMD ["node", "server.js"]