cracker / Dockerfile
elonmusk
Upload 4 files
ef8c943 verified
raw
history blame contribute delete
107 Bytes
FROM node:18
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
EXPOSE 7860
CMD ["node", "index.js"]