zaiwen3 / Dockerfile
yuoop's picture
Create Dockerfile
1af7085 verified
raw
history blame contribute delete
122 Bytes
FROM node:18-slim
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 7860
CMD [ "node", "index.js" ]