horapi / Dockerfile
ShieldX's picture
Update Dockerfile
8990156 verified
raw
history blame contribute delete
115 Bytes
FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 7860
CMD ["node", "index.js"]