autokeepgormtest2mins / Dockerfile
connorlixyz's picture
Upload 4 files
17f182a
raw
history blame
No virus
116 Bytes
FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 7860
RUN apt update -y &&\
npm install
CMD ["node", "index.js"]