J.ai / Dockerfile
blue0013's picture
Create Dockerfile
b4bb55a
raw
history blame
122 Bytes
FROM node:18
WORKDIR /app
RUN npm install express express-http-proxy
COPY . .
EXPOSE 7860
CMD [ "node", "server.js" ]