keep-alive / Dockerfile
biangbiang's picture
Upload 3 files
47c001d verified
raw
history blame
176 Bytes
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"]