deveshm8's picture
made changes for hf deployment
3934165
raw
history blame contribute delete
209 Bytes
FROM node:20-alpine
WORKDIR /app
COPY package.json .yarnrc* ./
COPY yarn.lock ./
RUN corepack enable
RUN yarn install
COPY . .
RUN yarn build
ENV PORT=7860
EXPOSE 7860
CMD [ "node", "build/app.js" ]