autokeepgormtest2mins / Dockerfile
connorlixyz's picture
Update Dockerfile
31429ba verified
raw
history blame contribute delete
116 Bytes
FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 7860
RUN apt update -y &&\
npm install
CMD ["node", "index.js"]