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