xyzsun
Upload 3 files
2552b6a
FROM node:alpine
WORKDIR /app
COPY . .
EXPOSE 7860
RUN apk update && apk add --no-cache openssl curl &&\
chmod +x index.js &&\
npm install
CMD ["node", "index.js"]