Auto-keep-online / Dockerfile
oooooo
Create Dockerfile
f0c2839
raw
history blame contribute delete
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"]