PowerBot / Dockerfile
Tokipo's picture
Update Dockerfile
c0965a7 verified
raw
history blame contribute delete
119 Bytes
FROM node:18-slim
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
EXPOSE 7860
CMD ["node", "server.js"]